[Mysql] 테이블 생성하기 / select count(*)
table 생성 mysql> create table event( -> e_no int(8)not null auto_increment, -> e_id char(200)not null, -> e_pw varchar(250)not null, -> e_hp char(11)not null, -> e_mail char(100) null, -> e_vip char(10) null, -> e_sw enum('window','office','xbox')not null default 'window', -> e_date timestamp not null default current_timestamp, -> e_del datetime null default '0001-01-01 01:00:00', -> primary key(..
2022. 7. 4.