About 367,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 Tutorial - W3Schools

    SQL is a standard language for storing, manipulating and retrieving data in databases. Our SQL tutorial will teach you how to use SQL in: MySQL, SQL Server, MS Access, Oracle, PostgreSQL, and other …

  3. SQL CREATE TABLE - GeeksforGeeks

    Nov 11, 2025 · 4. After creating a table, use the following command to view the structure of your table: DESC table_name; 5. If you need to change the table’s structure after creation (e.g., renaming a …

  4. SQL Examples - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.

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

    Nov 20, 2025 · Applies to: SQL Server 2014 (12.x) and later versions, and Azure SQL Database. Specifies to create an index on the table. This can be a clustered index, or a nonclustered index. The …

  6. CREATE TABLE statement in SQL Server

    Apr 29, 2022 · This article will show how to create tables in SQL Server databases.

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

  8. SQL Tutorial: Learn SQL from Scratch for Beginners

    This SQL Tutorial helps you master SQL quickly and effectively through many hands-on and practical examples with quizzes.

  9. CREATE TABLE SQL Server Syntax Examples

    Mar 15, 2022 · In this article we cover an introduction to the CREATE TABLE syntax for creating a new SQL Server table.

  10. SQL CREATE TABLE Statement - Online Tutorials Library

    The SQL CREATE TABLE Statement 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 …