CREATE TABLE

4D - Documentation   Français   English   German   Japanese   4D SQL Reference, Table of Contents   4D SQL Reference, Index   Back   Previous   Next

version 11.3 (Modified)


CREATE TABLE [IF NOT EXISTS] {sql_name.}sql_name({column_definition |table_constraint}, ... , {column_definition |table_constraint})

Description

The CREATE TABLE command is used to create a table named sql_name having the fields specified by passing one or more column_definition and/or table_constraint type arguments. If the IF NOT EXISTS constraint is passed, the table is only created when there is no table with the same name already in the database. Otherwise, it is not created and no error is generated.

The first sql_name parameter (optional) can be used to designate the SQL schema to which you want to assign the table. If you do not pass this parameter or if you pass the name of a schema that does not exist, the table is automatically assigned to the default schema, named "DEFAULT_SCHEMA." For more information about SQL schemas, please refer to the Principles for integrating 4D and the 4D SQL engine section.

Note: It is also possible to assign a table to an SQL schema using the "Schemas" pop-up menu found in the 4D table Inspector palette. This menu contains the list of schemas defined in the database.

A column_definition contains the name (sql_name) and data type (sql_data_type_name) of a column and a table_constraint restricts the values that a table can store.

Examples

1. Here is a simple example for creating a table with two columns:

   CREATE TABLE ACTOR_FANS       
   (ID INT32, Name VARCHAR);

2. This example creates the same table but only if there is no existing table with the same name:


   CREATE TABLE IF NOT EXISTS ACTOR_FANS       
   (ID INT32, Name VARCHAR);

3. This example creates a "Preferences" table and assigns it to the "Control" schema:

   CREATE TABLE Control.Preferences 
   (ID INT32, Value VARCHAR);

See Also

ALTER TABLE, column_definition, DROP TABLE, table_constraint.


4D - Documentation   Français   English   German   Japanese   4D SQL Reference, Table of Contents   4D SQL Reference, Index   Back   Previous   Next