Welcome to the SQLite list.
>Can I add a column name containing a dash "-" and if yes, how would I
>do that?
Make this
create table test([column-1] varchar(255));
or
create table test("column-1" varchar(255));
Both work
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

