Contents

Database
2003.04.23 09:46

[sql] 간단한 SQL 문법 정리

조회 수 12551 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
* 특정 필드 검색
select  필드명  from  테이블명  where  필드='값';
예) select  post_no  from  post  where  post_no = '530-360';


* 중복 필드 제거(distinct)
select  distinct(names)  as  d_names  from  picomax_addr;


*where문 - 조건

- 아닌것만 검사 (<>)
select  *  from  picomax_addr  where  names <>  '테스트';

- null 만 검사
select  *  from  picomax_addr  where  names  is  null;

- 영역 검사 (between)
select  *  from  post  where  post_no  between  '530-360' and '530-390';

- 영역내 검사 (in)
select  *  from  picomax_addr  where  names  names  in('테스트','홍길동');

- 패턴매칭 검사(like)
select  post_no  from  post  where  post_no  like '530-3%';
select  post_no  from  post  where  post_no  like '530-3_0';
select  post_no  from  post  where  post_no  like '530-3__';

- 부정 검사(not)
select  *  from  picomax_addr  where  names is not null;

- 조건연산자(and, or)
select  *  from  picomax_addr  where  names='테스트' and  telno='000-0000';

- 검색결과의 정렬(order by)
select  *  from  picomax_addr  order  by  telno  ASC;
select  *  from  picomax_addr  order  by  telno  DESC;

- 합계 (sum)
select  sum(점수)  from  학점;
select  sum(점수)  as  총점  from  학점;

- 평균 (avg)
select  avg(점수)  from  학점;

- 최소값 (min)
select  min(점수)  from  학점;

- 최대값(max)
select  max(점수)  from  학점;

* group by 문
select  과목, count(*)  from  학점  group  by  과목;

?

  1. [windows] 98/ME 속도 빠르게 튜닝(부팅,메모리,레지스터)

    Date2003.04.23 CategorySystem/OS Byhooni Views50447
    Read More
  2. [web] 제로보드 XE 템플릿에서 if문에 대해서 알아봅시다

    Date2013.08.16 CategoryEtc Byhooni Views19815
    Read More
  3. [web] 웹서비스 취약점 자료.. (논문첨부)

    Date2003.04.23 CategorySystem/OS Byhooni Views17942
    Read More
  4. [web] 웹 연동 프로그램 모음..

    Date2013.04.23 CategoryDevelop Byhooni Views6960
    Read More
  5. [web] 더 빠른 웹을 위한 프로토콜, 'HTTP/2'

    Date2014.10.20 CategoryDevelop Byhooni Views1641
    Read More
  6. [web] URL 인코딩 방법.. 테이블.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7143
    Read More
  7. [virtualbox] VirtualBox에 Ubuntu 설치하기

    Date2019.11.22 CategorySystem/OS Byhooni Views914
    Read More
  8. [vim] vim 명령으로 &#65279; 문자 제거하기 (remove 65279 bomb)

    Date2021.02.03 CategoryDevelop Byhooni Views1168
    Read More
  9. [vc++] 게임 소스 등.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views18347
    Read More
  10. [vb] 비쥬얼 베이직으로..

    Date2003.04.23 CategoryDevelop Byhooni Views53001
    Read More
  11. [vb] 비쥬얼 베이직 기출 문제 연습2

    Date2003.04.23 CategoryDevelop Byhooni Views54338
    Read More
  12. [vb] 비쥬얼 베이직 기출 문제 연습

    Date2003.04.23 CategoryDevelop Byhooni Views55134
    Read More
Board Pagination Prev 1 ... 5 6 7 8 9 10 11 12 13 14 ... 98 Next
/ 98