반응형
SELECT 문 - 조회
//전체 조회
select * from users;
//부분 조회
select email from users;
//별명 짓고 조회
select u.email from users as u;
INSERT 문 - 추가
insert into books (title,publication_date,publisher_id)
values
("자바의 정석","2024-12-09", 2),
("고양이 귀여워","2012-02-02", 3),
("나만 없어 고양이","2023-11-09", 4);
UPDATE 문 - 수정
update users
set email = "test@gmail.com", username = "test"
where user_id = 1
DELETE 문 - 삭제
insert into users (username,email)
values ("huhu", "huhu@test.com")
//해당하는 부분 삭제
delete from users where username = "huhu";
반응형
'IT > DB - 데이터베이스' 카테고리의 다른 글
JDBC API (0) | 2024.12.17 |
---|---|
SQL - TCL (1) | 2024.12.09 |
SQL - DDL (0) | 2024.12.09 |
SQL - 관계형 데이터베이스 개요 (0) | 2024.12.09 |
DB - 데이터베이스 (0) | 2024.12.06 |