About 13,200,000 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

  2. SQL CREATE TABLE - GeeksforGeeks

    Nov 11, 2025 · Create Table from Existing Table We can also create a new table based on the structure (and optionally the data) of an existing table. The CREATE TABLE AS SELECT …

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

  4. What are Tables in SQL? Records and Fields Explained - Intellipaat

    Nov 19, 2024 · A table in SQL is a collection of rows and columns where each column represents a specific attribute of the data. Learn more about it through this tutorial.

  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. An introduction to SQL tables

    Jul 17, 2020 · As we can see, the Persons table consists of Id, Name, Surname, and Age columns. These columns hold either numeric or text data according to defined data types. …

  7. How to Create a Table in SQL? Your Step-by-Step Guide for …

    Sep 24, 2023 · SQL, or Structured Query Language, is a powerful tool for managing and manipulating databases. One of its most fundamental applications is the creation of tables – …

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

    Nov 20, 2025 · Applies to: SQL Server Azure SQL Database Azure SQL Managed Instance SQL database in Microsoft Fabric Creates a new table in the database.

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

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

  11. SQL Server Copy Table To Another Table - SQL Server Guides

    1 day ago · SQL Server Copy Table To Another Table Method 1: The “Select Into” When I need to make a quick backup of a table before running a massive UPDATE or DELETE statement, this …

  12. How to Create Your First Table in SQL - LearnSQL.com

    Oct 7, 2020 · Use the CREATE TABLE SQL statement to create your first database table.