DML , 데이터 조작어 ( Select < Insert > Update, Delete ) 본문
연습할 환경을 구축해본다
sample db 라는 데이터 베이스 생성 ,
show databases; 로 생성 확인
use sampledb; 로 해당 데이터 베이스로 이동
dml_practice 라는 테이블 생성 ,
show tables; 로 생성 확인
desc dml_practice 로 칼럼과 데이터 타입 확인
** Insert , 데이터 추가하기
* insert into tablename(column1, column2, ... )
values ( value1, value2, ... ) ;
insert 한 데이터 확인해보기
* insert into tablename(column1, column2, ... ) -> 모든 칼럼에 값을 넣을 경우 insert into tablename 만 해도 정상 시행
values ( value1, value2, ... ) ;
'BF 2024 > SQL' 카테고리의 다른 글
DML , 데이터 조작어 ( Select , Insert , < Update, Delete > ) (0) | 2022.03.14 |
---|---|
DML , 데이터 조작어 ( < Select > , Insert , Update, Delete ) (0) | 2022.03.14 |
Table 변경& 삭제 ( Alter table table name rename new_table name) (0) | 2022.03.14 |
Table 생성하기 (0) | 2022.03.14 |
User 권한 관리 ( show grants for ~ , Grant/revoke all on db.* to ~ ) (0) | 2022.03.14 |
Comments