may i know how do you check if a database table already exist in the database already or not with just using the sql query method.
Asked
Active
Viewed 29 times
1 Answers
0
Try this
IF Exist(Select 1 from INFORMATION_SCHEMA. COLUMNS where TABLE_NAME like '%tableName%')

Rahul Sukhsohale
- 31
- 2