본문 바로가기

프로그래밍 언어/MySQL

[MySQL] 쿼리문으로 테이블 생성 및 현재 시간 기록 설정

반응형

 

쿼리문으로 테이블 생성 및 현재 시간 기록 설정

create table comments(
id int unsigned not null Auto_increment primary key,
    content varchar(100),
    created_at timestamp default now()
);

updated_at: 

ㄴ default/Expresstion: CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP

 

insert into comments
(content)
values
('이 사과 정말 맛있습니다.');

insert into comments
(content)
values
('진짜?');

insert into comments
(content)
values
('사과 진짜 맛있나요?');

update comments
set content = '맛 없을 것 같은디'
where id = 3;

select * from comments;



반응형