반응형
쿼리문으로 테이블 생성 및 현재 시간 기록 설정
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; |
반응형
'프로그래밍 언어 > MySQL' 카테고리의 다른 글
[MySQL] if() 함수, ifnull() 함수 , 실습 풀이 (0) | 2022.05.17 |
---|---|
[MySQL] ~인것 가져오기: where, and, or, between…and, in(), case when …then.. else… end (0) | 2022.05.17 |
[MySQL] 시간 계산: datediff(), date_add(), interval + 시간 (0) | 2022.05.16 |
[MySQL] 시간을 처리하는 방법:curdate(), curtime(), now() (0) | 2022.05.16 |
[MySQL] 최소값/최대값/평균/총합: min(), max(), avg(),sum() (0) | 2022.05.16 |