Code:
SELECT Count(*) FROM (SELECT * FROM table)
How to do this ?
EDIT:
huh, cant tell why now works.
Code:
SELECT Count(*) FROM (SELECT * FROM table) as Z
SELECT Count(*) FROM (SELECT * FROM table)
SELECT Count(*) FROM (SELECT * FROM table) as Z
SELECT COUNT(*) FROM table
Comment