Database
2003.04.23 09:46

[sql] 간단한 SQL 문법 정리

Views 12551 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
* 특정 필드 검색
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  과목;
?

List of Articles
No. Category Subject Author Date Views
965 Develop [php] 웹 응용프로그램(engines) 모음 file hooni 2013.04.23 7515
964 Etc [php] 싸이월드 이미지 외부 링크 하기(php) hooni 2013.04.23 16351
963 Develop [php] 심플한 게시판 ㅋㅋ 1 file hooni 2013.04.23 12985
962 Develop [php] 쉘에서 실행할 때 인수(파라미터) 받기.. hooni 2003.04.23 11588
961 Develop [php] 서버 이상 체크 해서 문자보내는 샘플소스.. file hooni 2013.04.23 6693
960 Develop [php] 빔 프로젝터 예약 프로그램.. ㅋㅋ file hooni 2013.04.23 6918
959 Develop [php] 배열 관련 함수 설명 ㅎㅎ hooni 2003.04.23 11746
958 Develop [php] 무조건 다운로드 받도록 header 세팅 file hooni 2013.04.23 7380
957 Develop [php] 몽이가 준 ajax 채팅 소스 ㅋㅋ file hooni 2013.04.23 36176
956 Develop [php] 메모장 - 웅지학원 ([c] mysql 백업프로그램 포함) file hooni 2003.04.23 6993
955 Develop [php] 마시마로 캐릭터 방명록 file hooni 2003.04.23 8239
954 Develop [php] 데이터를 엑셀,워드 형태로 변환할 때 헤더(ms-office) hooni 2013.04.23 7488
953 Develop [php] 니우쪽지다.. 받아라~ ^^ file hooni 2003.04.23 9834
952 Develop [php] 논문 관리 프로그램.. ㅋㅋ file hooni 2013.04.23 7255
951 Develop [php] 날짜 정보 출력 (년,월,일,시,분,초) hooni 2013.04.23 10503
950 Develop [php] 그래프 그리는 프로그램.. file hooni 2013.04.23 8462
Board Pagination Prev 1 ... 12 13 14 15 16 ... 74 Next
/ 74