One student of me asked "how can we get fields name of a table with theirs type and size ?". In this article I am going to expose, how can we achieve this in SQL Server.
Query to get field name with datatype and size
- SELECT column_name as 'Column Name', data_type as 'Data Type',
- character_maximum_length as 'Max Length'
- FROM information_schema.columns
- WHERE table_name = 'tblUsers'

- SELECT column_name as 'Column Name', data_type as 'Data Type',
- character_maximum_length as 'Max Length'
- FROM information_schema.columns
- WHERE table_name = 'tblUsers'

Summary
In this article, I explain how can you get fields of a database table. I hope after reading this article you will be able to do this. I would like to have feedback from my blog readers. Please post your feedback, question, or comments about this article.
In this article, I explain how can you get fields of a database table. I hope after reading this article you will be able to do this. I would like to have feedback from my blog readers. Please post your feedback, question, or comments about this article.


0 comments:
Post a Comment
Note: only a member of this blog may post a comment.