Here are multiple ways to get the table information.
The DESCRIBE command does not exist in MS SQL SERVER. This is an Oracle command used to describe the structure of objects within a given database. To achieve the same task in MSSQL Server, there are a series of stored procedures with the prefix SP_ that can be used.
To view the structure of a table within the current database,
use the command
Code
sp_help 'TABLE_NAME';
If you would like to see more details, Create your custom procedure
Code
span style="color: #ff0000;">'order'
Here is another alternative way to get the same information
Ans