1.

Name 3 Ways To Get An Accurate Count Of The Number Of Records In A Table1?

Answer»

ANSWER : SELECT * FROM TABLE1, SELECT COUNT(*) FROM table1, SELECT rows FROM sysindexes WHERE id = OBJECT_ID(table1) AND indid < 2.



Discussion

No Comment Found