About 519,000 results
Open links in new tab
  1. How can I show the table structure in SQL Server query?

    Aug 18, 2013 · In SQL Server, you can use this query: USE Database_name SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='Table_Name'; And do not …

  2. sql - Describe table structure - Stack Overflow

    Jun 7, 2017 · Sql server. DECLARE @tableName nvarchar(100) SET @tableName = N'members' -- change with table name SELECT [column].*, …

  3. SQL | DESCRIBE Statement - GeeksforGeeks

    May 10, 2023 · In SQL, creating a table is one of the most essential tasks for structuring your database. The CREATE TABLE statement defines the structure of the database table, …

  4. How to view table structure in SQL? - TablePlus

    Sep 11, 2019 · To show the table structure with all its column’s attributes: name, datatype, primary key, default value, etc. In SQL Server, use sp_help function: In MySQL and Oracle, …

  5. Show the structure of the table in SQL - Stack Overflow

    Mar 31, 2013 · How do I show the structure of a table? I run the select * from table ; and of course it displays all that's in the table. But, I am being asked to show the structure of the table.

  6. SQL Server Describe Table - GeeksforGeeks

    May 27, 2024 · Describing a table means getting information about the structure and metadata of the table. In this article, we will learn how to describe a table in SQL Server. How to Describe a …

  7. SQL - Show Tables - GeeksforGeeks

    May 3, 2024 · In this article, we will develop the various methods to accomplish this task using the SQL queries in the SQL server. In SQL Server, there are different ways to list tables within the …

  8. SQL Server Describe Table - Tpoint Tech - Java

    Mar 17, 2025 · This article gives a complete overview to display the table structure in SQL Server. Permissions. We can display the table structure or properties for a table only when we have …

  9. How to View a Table in SQL: Essential Steps for Database …

    Jun 28, 2023 · With the use of a SELECT statement, one can easily obtain a detailed overview of the table structure, including its records and attributes. This section will discuss how to …

  10. MySQL: 3 ways to see the structure of a table - Sling Academy

    Jan 25, 2024 · This tutorial covers several solutions for viewing table structure in MySQL 8. Using DESCRIBE Statement. The DESCRIBE statement is a simple and quick way to view the basic …

  11. Some results have been removed
Refresh