About 972,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. DDL Commands & Syntax - GeeksforGeeks

    Apr 3, 2023 · CREATE : This command is used to create a new table in SQL. The user has to give information like table name, column names, and their datatypes. Syntax - CREATE …

  3. SQL DDL statements - SQL Tutorial

    The CREATE TABLE statement is used to create a new table within a database. It specifies the table name, column names, data types, and constraints. Here’s a simple example: CREATE …

  4. SQL DDL: Getting started with SQL DDL commands in SQL Server - SQL

    Nov 8, 2019 · In this article, you saw how to use SQL DDL commands to create a database schema and to define and modify the structure of your database. You saw how to execute …

  5. Most Useful DDL Commands in SQL with Examples

    Mar 5, 2024 · When you first create a database, you need to create a new table. The CREATE command will create objects in a database, including tables, stored procedures, triggers, …

  6. SQL DDL Commands: The Definitive Guide - DataCamp

    May 28, 2024 · CREATE command in SQL. When I need to create a new table, I use the CREATE TABLE command as seen below: CREATE TABLE table_name ( column_1 …

  7. Using DDL Statements in SQL - Online Tutorials Library

    For example, the CREATE TABLE statement below creates a table EMP_TEST. Note the column specifications, data type and precision. CREATE TABLE SCOTT. EMP_TEST. (EMPID …

  8. Data Definition Language (DDL) Commands with Example

    DDL Statement CREATE(with example) The CREATE command is used to build new database objects such as tables, indexes, or views. When creating a table, you define its name, …

  9. SQL CREATE TABLE Statement: A Comprehensive Guide with Examples

    Oct 26, 2024 · This comprehensive guide delves deep into the CREATE TABLE statement in SQL, providing you with the knowledge and examples you need to design and build robust …

  10. T-SQL DDL statements in SQL Server - T-SQL Tutorial

    Uses DDL statements to create, alter, or drop objects in a SQL Server database. The objects of a database are: schemas, tables, views, stored procedures, users, indexes, constraints, triggers, …

  11. Some results have been removed
Refresh