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

    The SQL CREATE TABLE statement is used to create a database table. We use this table to store records (data). For example, Example-- create a table named Companies with different …

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

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

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

  6. The SQL CREATE TABLE Statement - Online Tutorials Library

    This tutorial will teach you how to use SQL to create tables in RDBMS. We use CREATE TABLE command to create a Table in a Database. In RDBMS, Database tables are used to store the …

  7. SQL CREATE TABLE Statement with Practical Examples

    Nov 4, 2022 · Here is the syntax to be used with SQL CREATE TABLE with SELECT statement: CREATE TABLE table_name AS (SELECT column1_name, column2_name, column3_name...

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

  9. SQL CREATE TABLE - W3Schools

    SQL CREATE TABLE is a command that creates a new table in the RDBMS database, such as MySQL, SQL Server, Oracle, etc. The syntax for creating a new table using SQL is: column2 …

  10. SQL create table - w3resource

    Apr 20, 2024 · Here are some important points and tips about the "SQL CREATE TABLE" statement: Table Name: Choose a descriptive and relevant name for your table. It should …

  11. Some results have been removed
Refresh