Could anyone help me in checking whether table exists or not in sql azure?
Use this query -
SELECT
*
FROM
sys.tables t
JOIN
sys.schemas s
ON t.schema_id = s.schema_id
WHERE
s.name = 'dbo' AND t.name = 'table1'
...specify your schema and table name.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With