About 24,700 results
Open links in new tab
  1. View the Table Definition - SQL Server | Microsoft Learn

    Feb 4, 2025 · You can display properties for a table in SQL Server by using SQL Server Management Studio or Transact-SQL. You can only see properties in a table if you either own …

  2. What is the equivalent of 'describe table' in SQL Server?

    Nov 26, 2008 · There are a few methods to get metadata about a table: Will return several result sets, describing the table, it's columns and constraints. The INFORMATION_SCHEMA views …

  3. 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 …

  4. 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 …

  5. Table Properties - SSMS - SQL Server | Microsoft Learn

    Feb 4, 2025 · This topic describes the table properties that are displayed in the Table Properties dialog box in SQL Server Management Studio. For more information about how to display …

  6. How To View Table In SQL Server Management Studio

    Nov 1, 2024 · You can use the below option to view the table structure in SSMS. 1. Right-click on the table name and select the Design option, as shown in the screenshot below.

  7. Create tables (Database Engine) - SQL Server | Microsoft Learn

    Feb 4, 2025 · Use table designer in SQL Server Management Studio. In SSMS, in Object Explorer, connect to the instance of Database Engine that contains the database to be …

  8. How to create a table using SQL Server Management Studio

    Oct 14, 2019 · We can create a table using SQL Server Management Studio (SSMS) Table Designer or T-SQL in SQL Server. This tip aims to serve as a step-by-step guide to create a …

  9. SQL Server table structure overview - SQL Shack

    Mar 7, 2018 · In this article, we described, in detail, the structure of the SQL Server main data storage unit, the table. We mentioned also the different types of user-defined tables that can …

  10. SQL Server Describe Table - Tpoint Tech - Java

    Mar 17, 2025 · We can display the table structure or properties for a table only when we have either owned the table or granted permissions to that table. The following are the ways to …

Refresh