Are there any reserved words in SQLite?
Three questions about reserved words:
Are there any reserved words in SQLite? If so, what are they?
If there are reserved words, is the 开发者_如何学Ccorrect 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?
Yes, see http://www.sqlite.org/lang_keywords.html for the list.
You can bracket them, but it isn't standard SQL. Also, see http://www.sqlite.org/lang_keywords.html
精彩评论