삭제 썸네일형 리스트형 mysql 컬럼,자료형 변경 12월 8일 수요일 1.컬럼의 자료형 변경 alter table 테이블명 modify 컬럼명 변경할 자료형 ex)alter table dtype2 modify c1 varchar(100); 2.컬럼명 변경 alter table 테이블명 change 컬럼명 변경할컬럼명 변경할자료형 ex)alter table dtype2 change c1 c10 varchar(100); 3.삭제 drop table 테이블명 *************데이터 제어************* 1.데이터 삽입(insert) 1.1 insert into 테이블명(컬럼명,...) values(값 c:\ mysql -u root -papmsetup examdb examdb라는 db에 exam2라는 테이블을 만들어서 nam.. 더보기 mysql table 생성,수정 & 자료형 12월 7일 *테이블 생성/수정/삭제 1.테이블생성 create table 테이블명(컬럼명 자료형, 컬럼명 자료형, ..) ex:) create table exam1 (name varchar(10), tel varchar(30)); =========================dtype1.sql========================= create table dype1( c1 tinyint, c2 tinyint(3), c3 tinyint signed, c4 tinyint unsigned); =========================dtype1.sql========================= C:\ mysql -u root -papmsetup examdb < c:\php\dytpe1.sql (첨부했음) ==.. 더보기 이전 1 다음