About 1,280,000 results
Open links in new tab
  1. CREATESQL Tutorial

    CREATE VIEW A view in SQL is a virtual table that is based on the result set of a SELECT statement. A view can be used to simplify complex queries, restrict access to certain columns or rows of a table, …

  2. TABELLE ERSTELLEN (Transact-SQL) - SQL Server | Microsoft Learn

    Andernfalls folgen globale temporäre Tabellen für Azure SQL-Datenbank der gleichen Syntax und Semantik, die SQL Server verwendet. Auf ähnliche Weise gelten globale temporäre gespeicherte …

  3. SQL - Create Table Statement - TutorialsTeacher.com

    In the above CREATE TABLE syntax, table_name is the name of the table you want to give, column_name1 is the name of the first column, column_name2 would be the name of the second …

  4. MySQL CREATE TABLE Statement - W3Schools

    The MySQL CREATE TABLE Statement The CREATE TABLE statement is used to create a new table in a database. Syntax

  5. CREATE TABLE statement in SQL Server

    Apr 29, 2022 · In the syntax, sch_name: Specify the name of the schema in which you want to create a table. You can read this article to learn more about SQL Server Schema. tbl_name: Specify the …

  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. Db2 12 - Db2 SQL - CREATE TABLE statement - IBM

    VARCHAR (integer) and VARGRAPHIC (integer) is the recommended syntax, because after the CREATE TABLE statement is processed, Db2 considers a LONG VARCHAR column to be …

  8. SQL CREATE TABLE - The Ultimate Guide to SQL CREATE TABLE …

    SQL CREATE TABLE – The Ultimate Guide to SQL CREATE TABLE Statement SQL CREATE TABLE the intricacies of this important command, learn about its syntax, and run through an example of how …

  9. SQL Server CREATE TRIGGER

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

  10. T-SQL - Create Tables - Online Tutorials Library

    The syntax becomes clearer to understand with the following example. A copy of an existing table can be created using a combination of the CREATE TABLE statement and the SELECT statement.