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
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
'OS' 카테고리의 다른 글
Sun Software Index (0) | 2008.07.14 |
---|---|
MySQL Cluster? 캐리어급 데이터베이스? 무엇이 다른가? (0) | 2008.06.29 |
Indiana Project - New opensolaris (0) | 2008.04.30 |
Solaris 에서 'pidgin' (메신져)를 쓰자! (2) | 2007.09.13 |
Solaris Basic - Host name 의 변경 - (1) | 2007.08.28 |