约 33,200 个结果
在新选项卡中打开链接
  1. SQL CREATE - W3Schools

    The CREATE TABLE command creates a new table in the database. The following SQL creates a table called "Persons" that contains five columns: PersonID, LastName, FirstName, Address, …

  2. SQL CREATE TABLE - GeeksforGeeks

    2025年8月8日 · The CREATE TABLE command in SQL defines how your data will be stored, including the table name, column names, data types, and rules (constraints) such as NOT …

  3. CREATESQL 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. CREATE TABLE (Transact-SQL) - SQL Server | Microsoft Learn

    Applies to: SQL Server 2014 (12.x) and later, Azure SQL Database, and Azure SQL Managed Instance. Column and table indexes can be specified as part of the CREATE TABLE statement.

  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

    In this tutorial, you will learn how to use the SQL CREATE TABLE statement to create a new table in the database.

  7. SQL - CREATE Table - 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.

  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 …

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

  10. SQL CREATE Statement - askthedev.com

    2024年9月29日 · In this article, we will explore different functionalities of the SQL CREATE statement, including how to create databases, tables, indexes, views, triggers, and stored …