Are there any reserved words in SQLite?
Posted
by DanM
on Stack Overflow
See other posts from Stack Overflow
or by DanM
Published on 2010-05-07T20:51:43Z
Indexed on
2010/05/07
20:58 UTC
Read the original article
Hit count: 589
Three questions about reserved words:
Are there any reserved words in SQLite? If so, what are they?
If there are reserved words, is the correct syntax for using one of them as a column or table name still to surround it with brackets? E.g.,
[User]
or[Name]
?Are there any implications with using words that are reserved in other flavors of SQL (e.g., SQLServer) but not reserved in SQLite when using ADO.NET to query a SQLite database?
© Stack Overflow or respective owner