About 187,000 results
Open links in new tab
  1. sql server - Create table (structure) from existing table - Stack …

    Aug 8, 2012 · If you want to copy the entire structure, you need to generate a Create Script of the table. You can use that script to create a new table with the same structure. You can then also …

  2. sql - Describe table structure - Stack Overflow

    @schmijos: actually it's implied, at best. "sql" does NOT mean "MS Sql Server" and it's irritating that so many people seem to think it's acceptable to use the generic term to specify a specific …

  3. T-SQL query to show table definition? - Stack Overflow

    Jun 2, 2011 · You will find the code of sp_getddl procedure for SQL Server. The purpose of the procedure is script any table, temp table or object. USAGE: exec sp_GetDDL GMACT or. exec …

  4. How to get the table structure in SQL Server? - Stack Overflow

    Apr 5, 2016 · This will list all columns, the schema and table they belong to, their datatype, max length, precision and scale (for numerical types) - what more are you looking for??

  5. sql - Copy table structure into new table - Stack Overflow

    Aug 3, 2009 · pg_dump dbname -s -t table_to_clone > /tmp/temp.sql Than sed or vim of the file to change the table name and related stuff. Often is enough to replace table_to_clone with …

  6. Which SQL command can I use to see the structure of a table on …

    Jun 4, 2017 · SQL query to get the structure of a table of datbaseA in serverA. 1. how to see the Table structure in the ...

  7. sql - Error 1046 No database selected, how to resolve? - Stack …

    # At first you have to create Database CREATE DATABASE student_sql; # Next, specify the database to use USE student_sql; # Demo: create a table CREATE TABLE student_table( …

  8. How to convert SQL Query result to PANDAS Data Structure?

    So basically I want to run a query to my SQL database and store the returned data as Pandas data structure. I have attached code for query. I am reading the documentation on Pandas, but …

  9. How to view SQL table structure in Oracle SQL developer

    Nov 22, 2019 · DESC is an Oracle client command - works in SQLPlus, SQLcl, and SQL Developer - WHEN connected to an Oracle Database. The best we have to offer you is, open …

  10. How can one see the structure of a table in SQLite?

    Jan 11, 2011 · Invoke the sqlite3 utility on the database file, and use its special dot commands:.tables will list tables ...

Refresh