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.
我无法对 IBM DB2 中数据库的列子集执行选择查询。
select * from user
这行得通。但
select username from user
不起作用。这是屏幕截图。
username是保留字。“正确”的解决方案可能是使用不是保留字的列名,例如user_name. 如果无法更改列名,则可以使用双引号 ( ") 对其进行转义:
username
user_name
"
SELECT "username" FROM user