Collections:
"sp_columns" - Getting a List of Columns in a View in SQL Server
How To Get a List of Columns in a View using the "sp_columns" Stored Procedure in SQL Server?
✍: FYIcenter.com
If you have an existing table, but you don't remember what are the columns defined in the view, you can use the "sp_columns" stored procedure to get a list of all columns of the specified view. The following tutorial script shows you a good example:
EXEC SP_COLUMNS fyi_links_top; GO TABLE_OWNER TABLE_NAME COLUMN_NAME TYPE_NAME LENGTH ----------- ------------- ----------- --------- ------ dbo fyi_links_top id int 4 dbo fyi_links_top counts int 4 dbo fyi_links_top url varchar 80 (3 row(s) affected)
The "sp_columns" stored procedure returns a long list of properties for each column of the specified view.
⇒ "sp_help" - Getting a List of Columns in a View in SQL Server
⇐ "sys.columns" - Getting a List of Columns in a View in SQL Server
2016-11-05, 2317🔥, 0💬
Popular Posts:
Collections: Interview Questions MySQL Tutorials MySQL Functions Oracle Tutorials SQL Server Tutoria...
How To Install PHP on Windows in MySQL? The best way to download and install PHP on Windows systems ...
How To Get the Definition of a User Defined Function Back in SQL Server Transact-SQL? If you want ge...
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...
How To Turn on mysql Extension on the PHP Engine in MySQL? The "mysql" API extension is provided as ...