첫 번째, mysql 접속
- [root@localhost ~]#mysql -u root -p
두번째, 사용할 데이터베이스를 선택합니다.
- show databases;
-use stdent;
세번째, 테이블 생성
create table student(
bbs_id int auto_increment primary key,
student_id int(11) not null,
name varchar(20) not null
);
네번째, 데이터 입력
INSERT INTO student(
bbs_id,student_id, name
) VALUES (
0,20120405,"홍길동");