Sep 1, 2004 #1 Skabumba Programmer Joined Sep 1, 2004 Messages 3 Location 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 Joined Jul 18, 2003 Messages 2,113 Location US SELECT * FROM information_schema.columns WHERE column_name = 'YourColumnName' -dave Upvote 0 Downvote