● 관계 연산자 ( and , or , between , in , not )
페이지 정보
본문
● 연산자 : 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 ) 23.04.12
- 다음글● 산술 연산자 ( + , - , * , / ) 23.04.12
댓글목록
등록된 댓글이 없습니다.