mysql 데이터베이스 기본 명령어
mysql # 데이터베이스를 만들겠다. create database firstBase; # 해당 데이터 베이스를 사용하겠다 use firstBase; # 테이블 생성 create table student( id int primary key auto_increment, #칼럼명 자료형 제약조건 , (primary key -> (not null&& unique) auto_increment-> 자동으로 숫자를 늘려준다 ex) 1,2,3,4 name varchar(50), #칼럼명 자료형 (varchar(50) => 문자를 50자 까지) age int, email varchar(50) ); #city 테이블 생성 create table city( id int primary key auto_increment, c..