Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tables Question

Status
Not open for further replies.

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...
 
SELECT * FROM information_schema.columns
WHERE column_name = 'YourColumnName'

-dave
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top