Friday, 3 May 2013

How to get all field names & Table schema in a table using SQL query

Solutions :
select [column_name],* from information_schema.columns
 where table_name = 'Table name' order by [column_name]

No comments:

Post a Comment