一个简单的却让我困惑的SQL问题
有这么一个表(按No升序排序):
ID name age No other
Kevin YYH 23 1 asd
Pilgrim YYH 24 2 fgh
Kevin yu 25 3 zxc
筛选ID:
Kevin YYH 23 1 asd
Pilgrim YYH 24 2 fgh
要实现以下筛选(按No升序排序):
筛选name:
Kevin YYH 23 1 asd
Kevin yu 25 3 zxc
筛选age:
Kevin YYH 23 1 asd
Pilgrim YYH 24 2 fgh
Kevin yu 25 3 zxc
如何用SQL实现?多谢了!