有一个问题一直不明白!
我们经常做一些查询返回一个结果集,并且自动在每行加上序号!这是我惯用的例子:
select (select count(*) from users where name<=u.name) as id,u.name from users u order by id
做到现在了,我还是弄不懂其中的奥秘,寻求帮助!
谢谢!!
我们经常做一些查询返回一个结果集,并且自动在每行加上序号!这是我惯用的例子:
select (select count(*) from users where name<=u.name) as id,u.name from users u order by id
做到现在了,我还是弄不懂其中的奥秘,寻求帮助!
谢谢!!