● 관계 연산자 ( and , or , between , in , not )
페이지 정보
작성자 관리자 작성일 23-04-12 11:32 조회 571 댓글 0본문
● 연산자 : not , and , or , between , in
01. select * from notice;
02. select * from notice where hit=0 or hit=100;
03. select * from notice where hit in(0,100);
04. select * from notice where hit not in(0,100);
05. select * from notice where 50<=hit and hit<=100;
06. select * from notice where hit between 50 and 100;
추천0 비추천 0
- 이전글 ● 비교 연산자 ( = , != , ^= , <> , > , < , >= , <= , is null , is not null )
- 다음글 ● 산술 연산자 ( + , - , * , / )
댓글목록 0
등록된 댓글이 없습니다.