About 50 results
Open links in new tab
  1. What is the equivalent of 'describe table' in SQL Server?

    Nov 26, 2008 · The SQL Server equivalent to Oracle's describe command is the stored proc sp_help The describe command gives you the information about the column names, types, length, etc.

  2. sql - Describe table structure - Stack Overflow

    Jul 29, 2010 · Which query will give the table structure with column definitions in SQL?

  3. database - PostgreSQL "DESCRIBE TABLE" - Stack Overflow

    How do you perform the equivalent of Oracle's DESCRIBE TABLE in PostgreSQL with psql command?

  4. How to display a description of a table in Oracle SQL?

    DESCRIBE { table-Name | view-Name } Description Command provides a description of the specified table or view. For a list of tables in the current schema, use the Show Tables command. For a list of …

  5. How to Describe table in SQL Server 2014 - Stack Overflow

    Aug 8, 2016 · How to Describe table in SQL Server 2014 Asked 9 years, 8 months ago Modified 9 years, 8 months ago Viewed 17k times

  6. How to retrieve a column value from DESCRIBE DETAIL <table_name>

    Feb 11, 2022 · The DESCRIBE DETAIL functionality returns a dataframe with 1 row, but isn't handled as a proper table in Spark SQL using databricks as of now, but you can do it via temp view as @axel-r …

  7. Show tables, describe tables equivalent in redshift

    Sep 11, 2013 · I'm new to aws, can anyone tell me what are redshifts' equivalents to mysql commands? show tables -- redshift command describe table_name -- redshift command

  8. What is the reason for not working of 'describe' command on oracle?

    May 10, 2016 · In the SQL query e.g SELECT * FROM flight Control + click on the table name (e.g flight in this case) , it will open the table model which is equivalent to the describe command and you can …

  9. sql - How do I list all the columns in a table? - Stack Overflow

    DESCRIBE name_of_table; This also works for Oracle as long as you are using SQL*Plus, or Oracle's SQL Developer.

  10. Describe all tables in the database with a single statement?

    Jul 28, 2002 · There's no single statement that can do it; both show columns and describe require a table name, so you can either do it every time or query the information schema.