eunzae's develog
[DA]CRUD 본문
C: Create → insert
insert into (table)
values ('a')
R: Read → Select
select *
from table_name
U: Update
update table_name
set column_name = 'a'
D: delete
delete from table_name
where colume_name = 'a'
'Database > Data Architecture' 카테고리의 다른 글
[데이터 모델링] 논리적 데이터 모델링(Logical Data Modeling) (0) | 2022.12.26 |
---|---|
[데이터 모델링]개념 데이터 모델링(Conceptual Data Modeling) (0) | 2022.12.21 |
[DA] 코드, ID, 번호 도메인의 차이점 (0) | 2022.08.09 |
[Datastage]컬럼명 변경 절차 (0) | 2022.05.07 |
[DA]정규화 (0) | 2022.04.24 |