我有一个SQL查询,我想在类型,顺序和类别上订购数据库。我可以查询所有这三个吗?
select * from t_person where name=xyz order by type,category,order
答案 0 :(得分:3)
试试这个:
使用""
(双引号)转义保留关键字订单
select * from t_person where name='xyz'
order by type,category,"order"
答案 1 :(得分:1)
使用双引号进行正确查询:
select * from t_person where name='xyz' order by type,category,"order"