The "Chinook" SQL script for creating the database contains many commands
with brackets, eg

 

DROP TABLE IF EXISTS [Album];

 

What do the brackets do? I've not seen any examples with brackets, but on
the other hand SQLite seems to ignore them. In other words the above
statement seems to be equivalent to

 

DROP TABLE IF EXISTS Album;

 

Many thanks,

 

¬Jonathan

 

 

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to