sqlite alter table add MULTIPLE columns in a single statement

前端 未结 4 591
南旧
南旧 2020-11-27 13:13

Is it possible to alter table add MULTIPLE columns in a single statement in sqlite? The following would not work.

alter table test add column mycolumn1 text, add          


        
4条回答
  •  無奈伤痛
    2020-11-27 13:43

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

    use the above redifined query

提交回复
热议问题