About 793,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 (With Examples) - Programiz

    SQL CREATE TABLE Syntax CREATE TABLE table_name ( column1 datatype, column2 datatype, column3 datatype, .... ); Here, table_name is name of the table you want to create; …

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

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

  6. The SQL CREATE TABLE Statement - Online Tutorials Library

    SQL provides the CREATE TABLE statement to create a new table in a given database. An SQL query to create a table must define the structure of a table. The structure consists of the name …

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

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

  9. SQL - Create Table Statement - TutorialsTeacher.com

    The following is the syntax to create a new table in the database. Syntax: CREATE TABLE table_name( column_name1 data_type [NULL|NOT NULL], column_name2 data_type …

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

  11. Some results have been removed
Refresh