sqlite alter table add MULTIPLE columns in a single statement

送分小仙女□ 提交于 2019-11-27 06:28:14
mu is too short

No, you have to add them one at a time. See the syntax diagram at the top of SQLite's ALTER TABLE documentation:

There's no loop in the ADD branch so no repetition is allowed.

alter table test add column mycolumn1 text; alter table test add column mycolumn2 text;

use the above redifined query

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!