원지의 개발
article thumbnail
728x90

Database cheat sheet

https://cheatography.com/tag/database/

 

55 Database Cheat Sheets - Cheatography.com: Cheat Sheets For Every Occasion

55 Database Cheat Sheets Related tags:     SQL     Development     Data     Server     MySQL    

cheatography.com

limit

  • 몇 개의 행을 반환할 것인지 제한하는 구문
  • MySQL, postgreSQL 사용 가능
select 컬럼명 from 테이블명
limit 개수;

select 컬럼명 from 테이블명
limit offset, 개수;
--offset은 0부터 시작

distinct

  • 중복제거 하는 구문
  • MySQL, Oracle 둘 다 사용 가능
select distinct 컬럼명 from 테이블;
select distinct 컬럼명1, 컬럼명2 from 테이블명;
--컬럼1, 2 합쳐서 중복인 행을 제거
728x90

'프로그래밍 언어 > SQL-MySQL' 카테고리의 다른 글

[SQL] DATE_FORMAT, Null 처리  (0) 2023.06.22
profile

원지의 개발

@원지다

250x250