반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Tags
- dbms
- chatgpt3 #AI #datascience
- Replication
- join #postgresql #sql #database
- Network #TCP #IP #Netmask #Host
- postgresql
- database #dbms #objects #sql #schema #table #functions
- postgresql #system_memory #local_memory #shared_memory #postgresql_architecture
- postgresql #vacuum #full_vacuum #verbose
- data_oid
- glossary #database #termins #postgresql #postgresql_architecture
- network #network_terminology #network_protocols
- postgresql_fdw
- EDB
- repmgr #postgresql #replication #HA
- one_thin
- linux #filesystem #linuxdirectory
- oid2nae #postgresql
- Linux #linux_tar #split
- postgresql #pgadmin #port #firewalld
- High_Availability
- SQL_VIEW #SQL #VIEW
- inux #ome_dir #unix #linux_commands #linux_useradd #useradd
- the_one_thing
- streaming_replication
- SQL_basic
- RAM #CPU #CS #Computer_Science #Terms
- Database
- SQL_COMMANDS #DDL #DML #TCL
- SQL #NULL #NOT_NULL
Archives
- Today
- Total
목록SQL #NULL #NOT_NULL (1)
i am lazy

SQL NULL PostgreSQL NULL 은 누락된 값을 나타내는 데 사용되는 용어입니다. 데이터베이스에서 NULL은 정보가 없거나 적용할 수 없음을 의미합니다. NULL은 값이 아니므로 숫자나 문자열과 같은 다른 값과 비교할 수 없습니다. NULL과 값을 비교하면 항상 알 수 없는 결과를 의미하는 NULL이 됩니다. NULL = NULL 테이블을 생성할 때 NULL 을 사용하는 기본 구문은 다음과 같습니다: Example: CREATE TABLE google_employees ( id INT PRIMARY KEY NOT NULL, name TEXT NOT NULL, age INT NOT NULL, salary int, phone int ); 여기서 NOT NULL 은 열이 항상 지정된 데이터 유형의..
SQL
2022. 10. 24. 16:21