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.
我正在尝试online-players使用 Left join in选择名称在表中的一些信息,SQL但是每次我运行代码时它只会返回以下错误。
online-players
SQL
"Unknown column 'ontime' in 'field list'"
我假设它是因为-在表的名称中会出现错误。
-
有没有办法绕过它,所以它仍然可以获得信息?
这不是真的,只有当相应的字段名称不存在时才会生成该错误。但是,您可以用反引号将字段和表名括起来以确保
需要反引号,仅此而已。
您可以使用反引号 (`) 来引用表格。
select * from `online-players`
前提是您的查询等中没有错字。