Monday, May 03, 2010

SQL - find column name from table

Select column name from table

select column_name,* from information_schema.columns
where table_name =like '%YourTableName%'

No comments:

Post a Comment