728x90
use notice; -- notice라는 데이터베이스 사용하기 명령
-- 테이블 만들기
create table list (
num int(10) not null,
title varchar(50) not null comment '제목',
content text comment '내용',
author varchar(50) not null comment '글쓴이',
primary key (num)
);
desc list; -- 만든 테이블의 정보 조회
alter table list convert to charset utf8; -- 케러셋 변환
select * from list; -- list 라는 테이블 조회
alter table list auto_increment=1; -- 자동 증가 수 1부터 시작으로 변경
'DEVELOP' 카테고리의 다른 글
[mysql] 코멘트 설정에 대해 자세히 알아보자 (0) | 2020.03.17 |
---|---|
[PHP] $_SERVER로 현재 url 경로 알기 (0) | 2019.11.08 |
[javascript & jQuery] 현재날짜,시간 출력하기 (0) | 2019.10.18 |
서버셋팅하기 (0) | 2019.10.15 |
[common] 데이터베이스 기초 용어 정리 (0) | 2019.09.09 |