I need the db2 sql query to find the table/tables from column name. I have the column name but don't have table name which this column belongs to.

link|improve this question
It is possible that multiple tables have a column with that name. Especially if the column name is for example "ID" or "LAST_UPDATED" – crowne Sep 1 '11 at 17:59
@crowne - Check the question please I have already mentioned table/tables. – AAA_king Sep 1 '11 at 19:13
feedback

2 Answers

select TBNAME from sysibm.syscolumns where NAME = '';

link|improve this answer
feedback

SELECT tabname FROM syscat.columns WHERE colname = 'mycol'

link|improve this answer
2  
Object names default to all upper case in DB2, but in case someone is deliberately using mixed-case names, consider using WHERE UPPER(colname) = UPPER('somecolumnname') – Fred Sobotka Sep 7 '11 at 17:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.