프로젝트/순애
-
게시판 데이터베이스 만들기프로젝트/순애 2023. 1. 17. 11:27
create schema sunaebo default character set utf8; select length('hello'); #한글은 글자수를 얼마나 잡는지 확인 : 3이었음 create table sunaebo.board ( Sunaebo_no varchar(10) primary key, Title varchar(200) not null, Content varchar (4500) not null, WrttineDate datetime not null, FixedDate datetime, Writer varchar(100) not null, Tag varchar(200) ); select * from information_schema.columns where table_name = 'board';..