按使用顺序排列多个选项

时间:2012-10-15 11:01:02

标签: sql oracle

我有一个SQL查询,我想在类型,顺序和类别上订购数据库。我可以查询所有这三个吗?

select * from t_person where name=xyz order by type,category,order

2 个答案:

答案 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"