About 4,360,000 results
Open links in new tab
  1. CREATE TABLE (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 20, 2025 · The following examples show how to create a temporal table linked to a new history table, and how to create a temporal table linked to an existing history table.

  2. SQL CREATE TABLE Statement - W3Schools

    The SQL CREATE TABLE Statement The CREATE TABLE statement is used to create a new table in a database. Syntax CREATE TABLE table_name ( column1 datatype, column2 …

  3. SQL Server CREATE TABLE: Creating a New Table in the Database

    This tutorial shows you how to use the SQL Server CREATE TABLE statement to create a new table in a specific schema of a database.

  4. CREATE TABLE in SQL Server - GeeksforGeeks

    Jul 23, 2025 · In this article, we will learn how to efficiently use CREATE TABLE statements to create a table in our database. We will cover all the basic concepts with clear and concise …

  5. SQL Server Create table

    Nov 28, 2024 · The CREATE TABLE statement is a fundamental SQL command used to define a table’s structure. In this blog, we’ll dive into how to use the CREATE TABLE statement …

  6. SQL Server: CREATE TABLE Statement - TechOnTheNet

    SQL Server: CREATE TABLE Statement This SQL Server tutorial explains how to use the CREATE TABLE statement in SQL Server (Transact-SQL) with syntax and examples.

  7. SQL Create Table Statement - Tutorial Gateway

    Unlike others, SQL Server does not have a CREATE TABLE AS SELECT command to duplicate an entire table or part of an existing table. However, it provides a SELECT INTO Statement to …

  8. Create a Table in Microsoft SQL Server with Examples

    Nov 14, 2025 · This article explains the basic CREATE TABLE command, how to insert data, recommended naming conventions, precautions, and limitations you should know before …

  9. Create Table SQL Server Step by Step

    Jul 28, 2022 · Learn how to create a table in SQL Server using T-SQL along with several different examples that build upon each other to create the final table.

  10. CREATE TABLE statement in SQL Server

    Apr 29, 2022 · To create a global temp table, we must use ## before the name of the table. For example, we want to create a local temp table named # tblpatient, the CREATE TABLE …