【发布时间】:2021-11-30 19:17:59
【问题描述】:
我想知道 SQLite 在创建表时对表名和列名施加了哪些限制。 creating a table 的文档说表名不能以“sqlite_”开头,但还有哪些其他限制?是否有任何是有效的正式定义?
只要名称被引用,SQLite 似乎令人惊讶地接受。比如……
sqlite> create table 'name with spaces, punctuation & $pecial characters?'(x int);
sqlite> .tables
name with spaces, punctuation & $pecial characters?
【问题讨论】:
标签: sqlite