6 Temmuz 2020 Pazartesi

CREATE TABLE

Giriş
qualified Name Nedir?
Açıklaması şöyle
A qualified name is the schema name and the table name separated by a dot. This will specify the schema in which we want to create our table
unqualified Name Nedir?
Açıklaması şöyle
An unqualified name consists of only the table name. This will create the table in the selected database which is public by default. This can be changed via the search_path ...
Örnek - qualified
Şöyle yaparız.
CREATE TABLE schema_1.persons (name text, age int);
Örnek - unqualified
Şöyle yaparız.
CREATE TABLE persons (name text, age int);

Hiç yorum yok:

Yorum Gönder