본문 바로가기
SQL

DML

by sarah.k 2022. 10. 5.

insert

delete

update

select

SELECT * FROM D;
insert into D(a,b,c,d,e) values(,,,);
insert into D(a,b,c,d,e) values(,,,),(,,,),(,,,),(,,,);

 

select*from information_schema.table_constraints
where constraint_schema=' ' and table_name=' ';


update C set c=' ' where a=' ';
delete from C where d='';

 

select[all|distinct] a from A
[where ]
[group by ] 
[having ]
[order by ]

'SQL' 카테고리의 다른 글

DML  (0) 2022.10.07
Alter  (0) 2022.10.05
auto_increment  (0) 2022.10.05
DDL  (0) 2022.10.05