● 비교 연산자 ( = , != , ^= , <> , > , < , >= , <= , is null , is not null )
페이지 정보
본문
● 연산자 : = , != , ^= , <> , > , < , >= , <= , is null , is not null
01. select * from notice;
02. select * from notice where writer = '1111';
03. select * from notice where writer != '1111';
04. select * from notice where writer ^= '1111';
05. select * from notice where writer <> '1111';
06. select * from notice where hit > 99;
06. select * from notice where signdate is null;
07. select * from notice where signdate is not null;
추천0 비추천0
- 이전글● 패턴 연산자 ( like , % ) 23.04.12
- 다음글● 관계 연산자 ( and , or , between , in , not ) 23.04.12
댓글목록
등록된 댓글이 없습니다.