Search
 
SCRIPT & CODE EXAMPLE
 

SQL

SQL > Manipulação de Tabelas > Constraint


Pode colocar restrições para limitar o tipo de dados a introduzir numa tabela.
Essas restrições podem ser especificadas quando a tabela for primeiro criada através da instrução CREATE TABLE ou após a tabela já ter sido criada através da instrução ALTER TABLE.

Alguns tipos comuns de restrições incluem o seguinte:

NOT NULL Constraint: Garante que uma coluna não pode ter o valor NULL.
DEFAULT Constraint: Fornece um valor padrão para uma coluna quando nenhum é especificado.
UNIQUE Constraint: Garante que todos os valores numa coluna são diferentes.
CHECK Constraint: Garante que todos os valores numa coluna satisfazem um determinado critério.
Primary Key Constraint: Utilizado para identificar de forma única uma linha na tabela.
Foreign Key Constraint: Utilizado para garantir a integridade referencial dos dados.
Cada restrição é abordada nas próximas secções.
Comment

PREVIOUS NEXT
Code Example
Sql :: script all indexes in a database 
Sql :: query to check temp space in oracle 
Sql :: https://stackoverflow.com/questions/52997573/how-to-connect-to-sql-database-with-react 
Sql :: in query in sql 
Sql :: SQLSTATE[HY000] [2002] No connection could be made because the target machine actively refused it (SQL: select * from `featured_categories` limit 1) 
Sql :: what is union in sql 
Sql :: how to find median of a column sql 
Sql :: while in plsql 
Sql :: postgresql auto increment not working 
Sql :: sql select merge multiple values 
Sql :: max in postgresql 
Sql :: sequelize with mysql nodejs 
Sql :: sql int size 
Sql :: Sql stand 
Sql :: how to Activate the database 
Sql :: enlever les doubles espaces dans les tables postgresql 
Csharp :: unity string split 
Csharp :: how to change scenes on collision unity 
Csharp :: unity how to set gameobjkect enabled 
Csharp :: loop through an enum c# 
Csharp :: textmesh pro text unity 
Csharp :: check connection c# 
Csharp :: how to clear console in c# 
Csharp :: unity access child 
Csharp :: unity run void from another script 
Csharp :: C# string format sepperate every thousand 
Csharp :: unity or 
Csharp :: unity save list to json 
Csharp :: c# list object to json 
Csharp :: get date from file c# 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =