order by no_of_products desc;
为什么上面的代码工作,下面的代码不起作用。我该怎么做才能使下面的代码工作。
order by no_of_products sold desc;
或
order by no_of_products sold' desc;
答案 0 :(得分:0)
似乎您缺少按列排序的分隔符
order by no_of_products desc, sold desc;
(或在错误的地方使用别名)
或者如果您的空间列使用了背景
order by `no_of_products sold` desc;
但我建议您不要使用带有空格的列名。