How to get column properties from a table
You can get the columns detail of a table from the database. SELECT t.name AS table_name,c.name AS column_name,c.is_identity,c.is_nullable,c.max_length,ty.name Using above query you can get table columns and columns properties like Column Name, |
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.