:::: 개발 ::::/::: MSSQL :::

mysql create table sample (테이블 생성 예제)

nayha 2015. 1. 5. 15:14


그만때려 ~~


create table 테이블명 ( 

컬럼 1

, 컬럼2, ...

)


create table admin_member(

no int(10) unsigned not null auto_increment primary key,

     userid varchar(20)  not null,

     userpwd varchar(20) default '0000' not null

);

반응형