Krasavita
SSC-Insane
Points: 23138
More actions
January 5, 2009 at 1:55 pm
#203619
How can I find in which table field1, by writing a in query anylyzer statment.Thank you
Jeffrey Williams
SSC Guru
Points: 90350
January 5, 2009 at 2:17 pm
#921435
You can use the information schema views or the system table sys.columns.
Jeffrey Williams“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers fasterManaging Transaction Logs
MANU-J.
SSC-Dedicated
Points: 31126
January 5, 2009 at 3:46 pm
#921473
select * from sys.columns
where name=''
go
select * from information_schema.columns
where column_name=''
MJ
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply