SQL 명령어 모음 #1

ims·2020년 10월 24일
0

SQL

목록 보기
3/12

show databases

show columns

현재시간 저장

now()

https://freeprog.tistory.com/320

Distinct

This would produce the following result. Duplicate entries have been removed.

select distinct name from user

-> 같은 name인거 지워져서 가져옴

limit

select id,name from user limit 5

상위 5개만 가져와라

범위제한

limit 3,20

-> 3번째 index(0부터시작이기에 4번째라고 생각하면 댐) 부터 20개 가져와라

order by

select * from user order by id,money

다중 sorting도 가능

profile
티스토리로 이사했습니다! https://imsfromseoul.tistory.com/ + https://camel-man-ims.tistory.com/

0개의 댓글