Sep 1, 2004 #1 Skabumba Programmer Sep 1, 2004 3 US How would I in Microsoft SQL find all the tables that have a column of a particular name. Thanks for the help...
How would I in Microsoft SQL find all the tables that have a column of a particular name. Thanks for the help...
Sep 1, 2004 #2 vidru Programmer Jul 18, 2003 2,113 US SELECT * FROM information_schema.columns WHERE column_name = 'YourColumnName' -dave Upvote 0 Downvote