2020/06/07
지난 시간에 이어서 다시 한 번 테이블 생성부터 데이터 입력과 조회까지 진행보려고한다.
테이블을 만들기 전에 먼저 DB를 먼저 만든다.
create database jotang_db;
use jotang_db;
create table person (
id int not null auto_increment,
title varchar(50) not null,
contents text not null,
created_at datetime default now() not null,
updated_at datetime default now() not null,
deleted_at datetime null,
primary key ( id )
);
insert into person (
id, title, contents, created_at, updated_at, deleted_at )
values (
null, 'jotang', '이미지url', 'jotang@jotang.com',
'010-1111-2222', now(), now(), null);
select * from person
desc person