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: 555

Filed under:
|

Three questions about reserved words:

  1. Are there any reserved words in SQLite? If so, what are they?

  2. 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]?

  3. 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

Related posts about sqlite

Related posts about ADO.NET