About 3,970,000 results
Open links in new tab
  1. SELECT Examples (Transact-SQL) - SQL Server | Microsoft Learn

    Feb 2, 2026 · Applies to: SQL Server Azure SQL Database Azure SQL Managed Instance SQL database in Microsoft Fabric This article provides examples of using the SELECT statement. The …

  2. CREATE TABLE statement in SQL Server

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

  3. SQL Server CREATE TABLE: Creating a New Table in the Database

    This tutorial shows you how to use the SQL Server CREATE TABLE statement to create a new table in a specific schema of a database.

  4. SQL CREATE TABLE - GeeksforGeeks

    Nov 11, 2025 · Query: CREATE TABLE SubTable AS SELECT CustomerID, CustomerName FROM customer; Output: Note: We can use * instead of column name to copy whole table to another table. …

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

  6. SQL CREATE TABLE - 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, and City:

  7. Create tables (Database Engine) - SQL Server | Microsoft Learn

    Nov 18, 2025 · Applies to: SQL Server 2016 (13.x) and later versions Azure SQL Database Azure SQL Managed Instance Azure Synapse Analytics Analytics Platform System (PDW) SQL database in …

  8. SQL CREATE TABLE Statement

    Home » SQL CREATE TABLE Statement SQL CREATE TABLE Statement Summary: in this tutorial, you will learn how to use the SQL CREATE TABLE statement to create a new table in the database. …

  9. SQL Server Temporary Tables – Local and Global Examples

    May 7, 2024 · In this article, we walk through the syntax for SQL Server local and global temporary tables and also use cases for when and how to use them.

  10. DECLARE CURSOR (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · Applies to: SQL Server Azure SQL Database Azure SQL Managed Instance SQL database in Microsoft Fabric Defines the attributes of a Transact-SQL server cursor, such as its …