- insert

insert into goodsinfo (code, title, writer, price) values ('10001', '뇌를 자극하는 Java 프로그래밍', '김윤명', 27000);

- update

update goodsinof set writer:='토마스 코멘 외 3명', price:=33600 where code = '10005';

- delete

delete from goodsinfo where code = '10005';

테이블을 삭제하는 방법

drop table goodsinfo;


create table goodsinfo (code char(5), title varchar(50), writer varchar(20), price int(8));

반드시 있어야 하는 항목은 뒤 부분에 not null을 붙인다. 이렇게 하면 해당 항목이 누락된 채 데이터를 입력했을 때 즉시 에러가 발생하기 때문에 나중에 발생할 가능성이 있는 문제를 미연에 방지 할 수 있다.

create table goodsinfo(
    code   char(5) not null,
    title     varchar(50) not null,
    writer  varchar(20) not null,
    price   int(8) not null
);


데이터베이스 만드는 방법

mysqladmin -u root -p create newdb




데이터베이스 삭제하는 방법

mysqladmin -u root -p drop newdb

+ Recent posts