About 50 results
Open links in new tab
  1. 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 I have …

  2. sql server - Create table (structure) from existing table - Stack Overflow

    Mar 24, 2010 · Select * Into <DestinationTableName> From <SourceTableName> Where 1 = 2 Note that this will not copy data, indexes, keys, etc. To learn why Where 1 = 2 is included, see Why use …

  3. sql - Describe table structure - Stack Overflow

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

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

    Nov 22, 2019 · 2 I am connecting to Microsoft SQL Server using Oracle SQL Developer. Describe table-name is not giving me any results. Can anyone please help me out with the right command to use to …

  5. SQL query to pull all database table structure in one go?

    Feb 27, 2019 · DESC TableName; But do we have a query which will provide table structure of all database tables in one go/single query/command? BTW, I am using SQL Developer. Thank you in …

  6. How can I show the table structure in SQL Server query?

    Aug 18, 2013 · SELECT DateTime, Skill, Name, TimeZone, ID, User, Employee, Leader FROM t_Agent_Skill_Group_Half_Hour AS t I need to view the table structure in a query.

  7. sql server - Get structure of temp table (like generate sql script) and ...

    Jan 24, 2012 · How do I get structure of temp table then delete temp table. Is there a sp_helptext for temp tables? Finally is it possible to then delete temp table in same session or query window? …

  8. How To Traverse a Tree/Work With Hierarchical data in SQL Code

    0 SQL is a language for performing set operations and recursion is not one of them. Further, many database systems have limitations on recursion using stored procedures as a safety measure to …

  9. sql - how to query a folder structure (files, directories ... - Stack ...

    Jul 29, 2009 · I need to query folder structure. In other words I need to be able to access directory structure by SQL. I'm thinking of that there should be some OLE DB provider or some ODBC driver …

  10. sql - Query to check latest modifications in entire database (fields ...

    Aug 30, 2022 · In SQL Server, is there a query that shows me the latest modifications in both data (every table) and tables structures? I need to check if in a database happens some modifications in …