Friday, 17 June 2016

Find all tables containing column with specified name - MS SQL Server

Is it possible to query for table names which contain columns being



LIKE '%myName%'



?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...