Dear All,
If you want to get all SQL tables through query use the following command
SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE
TABLE_TYPE='BASE TABLE' order by table_name
I hope it save your time
Regards
Rashid Bilgrami
If you want to get all SQL tables through query use the following command
SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE
TABLE_TYPE='BASE TABLE' order by table_name
I hope it save your time
Regards
Rashid Bilgrami
Comments
Post a Comment
Thanks for the Comments , Your review will display soon