SQL – Constraints

 0    8 schede    sir
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda Risposta
Ensures that a column cannot have a NULL value
inizia ad imparare
NOT NULL
Ensures that all values in a column are different
inizia ad imparare
UNIQUE
A combination of a NOT NULL and UNIQUE. Uniquely identifies each row in a table
inizia ad imparare
PRIMARY KEY
[MySQL:] UserId auto_increment primary key
Uniquely identifies a row/record in another table
inizia ad imparare
FOREIGN KEY
Ensures that all values in a column satisfies a specific condition
inizia ad imparare
CHECK
Sets a default value for a column when no value is specified
inizia ad imparare
DEFAULT
Used to create and retrieve data from the database very quickly
inizia ad imparare
INDEX
It's like a declaration of default value that increments by 1 for each record.
inizia ad imparare
auto_increment
SQLite: autoincrement

Devi essere accedere per pubblicare un commento.