About 794,000 results
Open links in new tab
  1. SQL CREATE TABLE Statement - W3Schools

    The CREATE TABLE statement is used to create a new table in a database. .... The column parameters specify the names of the columns of the table. The datatype parameter specifies …

  2. CREATE TABLE (Transact-SQL) - SQL Server | Microsoft Learn

    Common syntax. Simple CREATE TABLE syntax (common if not using options): CREATE TABLE { database_name.schema_name.table_name | schema_name.table_name | table_name } ( { …

  3. CREATE TABLE SQL Server Syntax Examples

    Mar 15, 2022 · In this article we will cover how to create a new table using TSQL. In this SQL tutorial, we will look at a common task of creating a database table. We will look at some do’s …

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

    To create a new table, you use the CREATE TABLE statement as follows: pk_column data_type PRIMARY KEY, column_1 data_type NOT NULL, column_2 data_type, ..., table_constraints. …

  5. CREATE TABLE statement in SQL Server - SQL Shack

    Apr 29, 2022 · In this article, we are going to learn about the CREATE TABLE statement. This article consolidates the various scenarios. I have covered the following scenarios. The …

  6. CREATE TABLE in SQL Server - GeeksforGeeks

    Apr 5, 2024 · In SQL Server, the CREATE TABLE statement is used to create a table in our database. We can say it is a fundamental step for defining a table with our database. This …

  7. SQL Server: CREATE TABLE Statement - TechOnTheNet

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

  8. SQL Create Table syntax and example - T-SQL Tutorial

    The CREATE TABLE statement in SQL Server database is used to create a new table in a database. The basic syntax for creating a table is as follows: CREATE TABLE table_name. …

  9. SQL Server Create Table: Powerful DDL - madesimplemssql

    Mar 24, 2024 · To define and construct a new table in a database, utilize SQL Server’s powerful CREATE TABLE statement. The table’s structure, including column names, data types, …

  10. Create Table in SQL Server - TekTutorialsHub

    Oct 28, 2020 · In this tutorial, we learn how to Create Table in SQL Server. We can create Tables either using the Create Table statement or using the Table designer option in SSMS. We learn …

  11. Some results have been removed