0

我有一个 SQL 查询,我想按类型、顺序和类别对数据库进行排序。我可以查询所有这三个吗?

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

2 回答 2

3

尝试这个:

使用""(双引号)转义保留关键字顺序

select * from t_person where name='xyz'
order by type,category,"order"
于 2012-10-15T11:09:09.500 回答
1

使用双引号进行正确查询:

select * from t_person where name='xyz' order by type,category,"order"
于 2012-10-15T11:12:01.960 回答