Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you create an index in the CREATE TABLE definition?

Tags:

postgresql

People also ask

Can I CREATE INDEX on Create Table statement?

It is possible to create a primary key or unique index within a SQL Server CREATE TABLE statement. Is it possible to create a non-unique index within a CREATE TABLE statement? Again, the goal is to create the non-unique index within the CREATE TABLE statement, not after it.

Is CREATE INDEX DDL?

DDL - CREATE INDEX. Used to create an index on an existing table. The ALTER TABLE statement can also be used to create (or drop) an index on a table. The syntax for this command varies across systems.

Does DDL define index?

DDL includes Structured Query Language (SQL) statements to create and drop databases, aliases, locations, indexes, tables and sequences. It also includes statements to alter these objects and impose or drop certain constraints on tables, such as the following: UNIQUE. PRIMARY.

Can you create an index?

Click where you want to add the index. On the References tab, in the Index group, click Insert Index. In the Index dialog box, you can choose the format for text entries, page numbers, tabs, and leader characters. You can change the overall look of the index by choosing from the Formats dropdown menu.


There doesn't seem to be any way of specifying an index in the CREATE TABLE syntax. PostgreSQL does however create an index for unique constraints and primary keys by default, as described in this note:

PostgreSQL automatically creates an index for each unique constraint and primary key constraint to enforce uniqueness.

Other than that, if you want a non-unique index, you will need to create it yourself in a separate CREATE INDEX query.


No.

However, you can create unique indexes in the create, but that's because they are classed as constraints. You can't create a "general" index.


Peter Krauss is looking for a canonical answer:

There are a MODERN SYNTAX (year 2020), so please explain and show examples, compatible with postgresql.org/docs/current/sql-createtable.html

You are searching for inline index definition, which is not available for PostgreSQL up to current version 12. Except UNIQUE/PRIMARY KEY constraint, that creates underlying index for you.

CREATE TABLE

[ CONSTRAINT constraint_name ] { CHECK ( expression ) [ NO INHERIT ] | UNIQUE ( column_name [, ... ] ) index_parameters | PRIMARY KEY ( column_name [, ... ] ) index_parameters |


The sample syntax of inline column definition(here SQL Server):

CREATE TABLE tab(
  id INT PRIMARY KEY,                            -- constraint
  c INT INDEX filtered (c) WHERE c > 10,         -- filtered index
  b VARCHAR(10) NOT NULL INDEX idx_tab_b,        -- index on column
  d VARCHAR(20) NOT NULL,
  INDEX my_index NONCLUSTERED(d)                 -- index on column as separate entry
);

db<>fiddle demo

The rationale behind introducing them is quite interesting What are Inline Indexes? by Phil Factor