컴퓨터/SQL

[Mysql] 게시판용 create table 쿼리 예시

dolhim 2016. 1. 6. 18:44

create table board (

    idx int(6) unsigned auto_increment primary key,

    title varchar(200) not null,

    writer varchar(50) not null,

    regdate varchar(20) not null,

    count int not null,

    content text not null,

    regip varchar(20) not null,

    filename varchar(100)

    

    )

'컴퓨터 > SQL' 카테고리의 다른 글

[PostgreSQL] SQL query example on pgAdmin  (0) 2017.02.21
[SQL] 테이블의 컬럼 수정하기  (0) 2015.12.30