-- student 샘플 데이터 INSERT INTO student (student_id, name, grade, major)VALUES (2, '박영희', 2, '경영학과'), (3, '이민수', 4, '전자공학과'), (4, '홍길동', 1, '디자인학과'), (5, '임성민', 3, '컴퓨터공학과'), (6, '한지원', 2, '경영학과'), (7, '박준형', 4, '전자공학과'), (8, '김민지', 1, '디자인학과'), (9, '이현수', 3, '컴퓨터공학과'), (10, '정미경', 2, '경영학과'), (11, '김성진', 4, '전자공학과'), (12, '임승환', 1, '디자인학과'); select * from student; INSERT INTO student (..
MySQL
-- 테이블을 삭제하는 명령 -- drop table student; -- 테이블 생성시에 디폴트 값을 제약 설정하는 방법 create table student( student_id int primary key, name varchar(50) not null, grade int not null, major varchar(50) default '미정' not null); desc student;-- 기본 문구 모양 -- INSERT INTO 테이블명(컬럼명1, 컬럼명2, ...) VALUES(값1, 값2, ...); -- INSERT INTO 테이블명 VALUES (값1, 값2, ...); - 생략 버전 insert into student(student_id, name, grade,..
create database mydb;use mydb;-- 테이블 생성 create table student( student_id int, name varchar(50) not null, grade int not null, major varchar(50) not null);select * from student;desc student;-- 과목 테이블 생성 create table subject( subject_id int, subject_name varchar(50) not null, credit int not null, department varchar(5), professor char(50) not null);select * from subject;..
-- 데이터 입력 하기 /* insert into usertbl(userName, birthYear, addr, mobile)values ('이승기', 1987, '서울', '011-111-1111');insert into usertbl(userName, birthYear, addr, mobile)values ('김경호', 1971, '전남', '019-333-3333');*/insert into usertbl(userName, birthYear, addr, mobile)values ('이승기', 1987, '서울', '011-111-1111'), ('김경호', 1971, '전남', '019-333-3333'), ('윤종신', 1969, '경남', ''), ('임재범'..