SQLite中有保留字吗?

发布于 2024-08-31 22:08:29 字数 287 浏览 2 评论 0原文

关于保留字的三个问题:

  1. SQLite中有保留字吗?如果有,它们是什么?

  2. 如果存在保留字,使用其中之一作为列名或表名的正确语法是否仍用方括号括起来?例如,[User][Name]

  3. 当使用 ADO.NET 查询 SQLite 数据库时,使用在其他 SQL 版本(例如 SQLServer)中保留但在 SQLite 中未保留的单词是否有任何影响?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸩远一方 2024-09-07 22:08:29
  1. 是的,请参阅 http://www.sqlite.org/lang_keywords.html 了解列表。

  2. 您可以将它们括起来,但这不是标准 SQL。另请参阅 http://www.sqlite.org/lang_keywords.html

  1. Yes, see http://www.sqlite.org/lang_keywords.html for the list.

  2. You can bracket them, but it isn't standard SQL. Also, see http://www.sqlite.org/lang_keywords.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文