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

  2. SQL CREATE TABLE - GeeksforGeeks

    Nov 11, 2025 · The CREATE TABLE AS SELECT command allows us to duplicate an entire table or select specific columns to form a new one. The following query creates a new table called SubTable …

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

    Nov 20, 2025 · When you use CREATE TABLE or ALTER TABLE to create or alter a table, database and session settings influence and possibly override the nullability of the data type that is used in a …

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

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

  6. SQL Create Table Statement - Tutorial Gateway

    In SQL Server, once the database is created, the next step is to create a new table. It is the first and most important step because, as we all know, it is the place where we store and manage data. For …

  7. CREATE TABLE - Oracle Help Center

    An object table is explicitly defined to hold object instances of a particular type. You can also create an object type and then use it in a column when creating a relational table. Tables are created with no …

  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. 15.1.20 CREATE TABLE Statement - MySQL

    The Create_options column shows the row format that was specified in the CREATE TABLE statement, as does SHOW CREATE TABLE. Row format choices differ depending on the storage engine used …

  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 …