Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道对我的 NexusDB 中包含空格的字段使用哪种语法。我已经尝试过通常的方法,例如: [ ] `` 但这些都不起作用,查询只是错误。所以一个示例查询可能是:
select `offical name` from MyTable select [official name] from MyTable
(这些不起作用)
谢谢,
卡尔..
根据 ISO 9075(又名 SQL 标准),分隔标识符的分隔符是双引号。这是 NexusDB 实现的:
select "official name" from MyTable