About 7,060,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. SQL CREATE TABLE - GeeksforGeeks

    Apr 14, 2025 · What is the SQL CREATE TABLE Statement? The CREATE TABLE command in SQL is used to define a new table within a database. A table's structure, including column …

  3. SQL CREATE TABLE Statement - SQL Tutorial

    To create a new table, you use the CREATE TABLE statement. Here’s the basic syntax of the CREATE TABLE statement. column1 datatype constraint, column2 datatype constraint, ... In …

  4. How to Create a Table in SQL - LearnSQL.com

    Aug 19, 2020 · In this article, you’ll learn what a database table is, who creates them, and how to use the syntax of the CREATE TABLE command. What Is a Database Table? A relational …

  5. SQL: CREATE TABLE Statement - TechOnTheNet

    This SQL tutorial explains how to use the SQL CREATE TABLE statement with syntax, examples, and practice exercises. The SQL CREATE TABLE statement allows you to create and define a …

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

  7. SQL CREATE TABLE Statement - Tutorial Republic

    To understand this syntax easily, let's create a table in our demo database. Type the following statement on MySQL command-line tool and press enter: id INT NOT NULL PRIMARY KEY …

  8. SQL CREATE TABLE - W3Schools

    Using the SQL CREATE TABLE statement, learn how to create a new table in a Relational Database Management System (RDBMS). Discover the basic syntax and options for creating …

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

  10. 5 Ways to Create a Table in SQL - Database.Guide

    Nov 2, 2022 · Below are five options for creating a table when using SQL. First up, here’s an example of using a simple CREATE TABLE statement to create the table: PetId int NOT NULL …

  11. Some results have been removed
Refresh