通过 SQLObject 在 MySQL 中使用非法名称
如何在 SQLObject 中使用 MySQL 的非法名称?
在纯 SQL 中,可以使用反引号,例如:
SELECT `select from` FROM table1 WHERE 1;
...可以用于选择名为 select from
的字段。是否可以告诉 SQLObject 使用反引号?
How to use illegal names for MySQL with SQLObject?
In pure SQL it is possible to use backquotes, say:
SELECT `select from` FROM table1 WHERE 1;
...can be used to select the field called select from
. Is it possible to tell SQLObject to utilize backquotes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要从 SQLObject 访问
select from
,请使用反引号声明该列:to access
select from
from SQLObject, declare the column with backticks: