ilreme's blog
Published 2008. 5. 21. 11:10
MySQL 명령어 모음 OS
show tables;
show table status;
show columns from 테이블이름;
desc 테이블이름;

alter table 테이블이름 modify 컬럼이름 mediumblob;
alter table 테이블이름 modify 컬럼이름 mediumint;
alter table 테이블이름 modify 컬럼이름 float(7,3);
alter table 테이블이름 modify 컬럼이름 varchar(800);
alter table 테이블이름 drop 컬럼이름;
alter table 테이블이름 add 컬럼이름 varchar(800);

alter table 테이블이름 rename 새로운테이블이름;

alter table 테이블이름 add id int;
alter table 테이블이름 add key (id);
alter table 테이블이름 modify id int auto_increment;

alter table 테이블이름  add foreign key (컬럼이름) references 다른테이블이름 (컬럼이름) on delete set null;

select productid from productinfo order by productid limit 개수;
select productid from productinfo order by productid limit 번째,개수;

select count(*) from productinfo where csres IS NULL;

select productid from i12345678 where csdist IS NOTNULL order by csdist;

delete from productinfo;

drop table 테이블이름;

insert into 테이블이름 values(어쩌고,저쩌고);
insert into 테이블이름 (엔티티이름) values(어쩌고);

delete from productinfo where productid LIKE '0001065%';

출처 - http://initiate.tistory.com/101