我有这样的事情:
Select id , name from table1 (how to orderby alphabetical from the name(column))
select的结果应该是: 1.Alex 2.Bob 3.Charlie
答案 0 :(得分:2)
使用: -
Select id , name from table1 ORDER BY NAME
默认情况下,订单是升序。如果要按降序获取名称,请使用: -
ORDER BY NAME DESC