22.0322 SQL week i learned

박시유·2022년 3월 22일

SQL

목록 보기
1/1
  1. Dbever
  2. select * from TABLE
  3. where 조건 = '값'
  • and 조건2

  • != 같지않음

  • between A and B

  • in (a, b)

  • email like '%naver.net'

    a%
    %b
    a%b
    %c%

  • limit 5 : 5개만 출력 (정렬 기준은?)

  • Distinct A from TABLE

  1. select count(*) from orders

0개의 댓글