About 1,650 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 TABLE table_name ( column1 datatype, column2 datatype, column3 …

  2. CREATESQL Tutorial

    The SQL CREATE statement is used to create a new table, view, index, or other object in a database. It is one of the most fundamental and widely used SQL commands, and it allows database …

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

    Nov 20, 2025 · Applies to: SQL Server 2014 (12.x) and later versions, Azure SQL Database, and Azure SQL Managed Instance. Column and table indexes can be specified as part of the CREATE TABLE …

  4. SQL CREATE TABLE - GeeksforGeeks

    Nov 11, 2025 · To ensure the smooth creation and management of your tables, keep these points in mind: 1. The CREATE TABLE statement can also define constraints like NOT NULL, UNIQUE, and …

  5. SQL CREATE TABLE Statement

    In this tutorial, you will learn how to use the SQL CREATE TABLE statement to create a new table in the database.

  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 - Tutorial Gateway

    SQL Server CREATE Statement helps to create a new table, which is a combination of Rows and Columns, and is helpful to store & Manage Data.

  8. SQL - Create Table Statement - TutorialsTeacher.com

    The CREATE statements are used to create the database structures like table, view, sequence, function, procedure, package, trigger, etc. The CREATE TABLE statement is used to create a new …

  9. SQL CREATE TABLE Statement - Tutorial Republic

    In this tutorial you will learn how to create a table inside the database using SQL. In the previous chapter we have learned how to create a database on the database server. Now it's time to create some …

  10. 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 define its structure by specifying a unique table name and listing all the …