Check the structure of tables in SQLSERVER, Oracle, PostgreSQL & MYSQL databases
Check the full table structure and all columns as output:
Specify the column name in select Query:SQL Server
Select employeename, employeeid from employees;Oracle
# exec sp_columns TableName
# Desc tablename;
PostgreSQL
# \d+ tablename
# \d tablename
MYSQL
# Describe tablename;