is there a way to check the exsistance of a table? I want something similar to this:
SELECT COUNT(*) FROM table1
but for a table (in a given database), not rows within a table
I know of another line command:
check table table1 quick
but this gives back too much information, is there a command which returns only 1 cell of information? If not i guess i can keep usign the previous command