0200orderby.mql 209 B

1234567891011121314151617
  1. select id,xdouble as "大" from /mix/mtx order by "大"
  2. /**
  3. output()
  4. **/
  5. ;
  6. select count(*), aa.xdouble as "大" from
  7. (SELECT * FROM /mix/mtx) aa
  8. group by aa.xdouble
  9. order by "大" desc
  10. /**
  11. output()
  12. **/
  13. ;