![]() |
#2
bygg2007-05-11 13:36
|
一单元、二单元、三单元、四单元.......
select distinct(单元) from 楼库 where 楼号='A座' order by 单元
默认的总是:
二单元、三单元、四单元、一单元
降序则变成了:
select distinct(单元) from 楼库 where 楼号='A座' order by 单元
一单元、四单元、三单元、二单元
