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
alter table test add column mycolumn1 text; alter table test add column mycolumn2 text;
use the above redifined query