Posted on 2008-08-13 20:19
Prayer 阅读(188)
评论(0) 编辑 收藏 引用 所属分类:
数据库,SQL
>>
Select count(*) from (select * from table)
但这句走不通,只是例子。
<<
其實是可以走得通的。
加個導出表名就好了,像:
Select count(*) from (select * from table) tmp
----后面一句确实是可以的。其实Select count(*) from table就可以了。