About 24,400 results
Open links in new tab
  1. 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 …

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

    Jul 21, 2026 · When you create local or global temporary tables, the CREATE TABLE syntax supports constraint definitions except …

  3. SQL CREATE TABLE - GeeksforGeeks

    Aug 29, 2026 · To ensure the smooth creation and management of your tables, keep these points in mind: 1. The CREATE TABLE …

  4. SQL CREATE TABLE - W3Schools

    The CREATE TABLE command creates a new table in the database. The following SQL creates a table called "Persons" that …

  5. CREATE TABLE SQL Server Syntax Examples

    Mar 15, 2022 · In this article we cover an introduction to the CREATE TABLE syntax for creating a new SQL Server table.

  6. SQL CREATE TABLE (With Examples) - Programiz

    In SQL, the CREATE TABLE statement is used to create tables. In this tutorial, we'll learn about creating tables in SQL with examples.

  7. SQL CREATE TABLE Statement - Online Tutorials Library

    The CREATE TABLE statement in SQL is used to create a new table in an existing database. When creating a table, you must …

  8. SQL CREATE TABLE Statement - W3Schools

    SQL CREATE TABLE Example The following example creates a table called "Persons" that contains five columns: PersonID, …

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

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

    Jul 20, 2026 · Create a new table, name it, and add it to an existing database using the Database Engine.