Does anyone know how I can search the column names of all the tables in a database and see if any of the column names are using SQL Keywords.
I want get a list of the table and column so I can go to that table to rename the column.
Example:
A table name Test has a column named "Name", I want to get the table name and column name
However, if the same table has a column name of "EmployeeName", I don't want to list that column since the column name is not an exact match to a SQL Keyword
Hopefully that made sense.
Thanks in advance
I want get a list of the table and column so I can go to that table to rename the column.
Example:
A table name Test has a column named "Name", I want to get the table name and column name
However, if the same table has a column name of "EmployeeName", I don't want to list that column since the column name is not an exact match to a SQL Keyword
Hopefully that made sense.
Thanks in advance