MySQL 튜토리얼

MySQL 홈 MySQL 소개 MySQL RDBMS

MySQL SQL

MySQL SQL MySQL 선택 MySQL의 위치 MySQL AND, OR, NOT MySQL 주문 MySQL 삽입 MySQL NULL 값 MySQL 업데이트 MySQL 삭제 MySQL 한계 MySQL 최소 및 최대 MySQL 카운트, 평균, 합계 MySQL이 좋아 MySQL 와일드카드 MySQL 입력 MySQL 사이 MySQL 별칭 MySQL 조인 MySQL 내부 조인 MySQL 왼쪽 조인 MySQL 오른쪽 조인 MySQL 크로스 조인 MySQL 자체 조인 MySQL 유니온 MySQL 그룹 BY MySQL HAVING MySQL 존재 MySQL 모든 것 MySQL 삽입 선택 MySQL 케이스 MySQL 널 함수 MySQL 주석 MySQL 연산자

MySQL 데이터베이스

MySQL 생성 DB MySQL 삭제 DB MySQL 테이블 생성 MySQL 삭제 테이블 MySQL 변경 테이블 MySQL 제약 조건 MySQL이 null이 아님 MySQL 고유 MySQL 기본 키 MySQL 외래 키 MySQL 체크 MySQL 기본값 MySQL 인덱스 생성 MySQL 자동 증분 MySQL 날짜 MySQL 보기

MySQL 참조

MySQL 데이터 유형 MySQL 함수

MySQL 예제

MySQL 예제 MySQL 퀴즈 MySQL 연습

MySQL 연산자


MySQL 산술 연산자

Operator Description Example
+ Add
- Subtract
* Multiply
/ Divide
% Modulo

MySQL 비트 연산자

Operator Description
& Bitwise AND
| Bitwise OR
^ Bitwise exclusive OR

MySQL 비교 연산자

Operator Description Example
= Equal to
> Greater than
< Less than
>= Greater than or equal to
<= Less than or equal to
<> Not equal to


MySQL 복합 연산자

Operator Description
+= Add equals
-= Subtract equals
*= Multiply equals
/= Divide equals
%= Modulo equals
&= Bitwise AND equals
^-= Bitwise exclusive equals
|*= Bitwise OR equals

MySQL 논리 연산자

Operator Description Example
ALL TRUE if all of the subquery values meet the condition
AND TRUE if all the conditions separated by AND is TRUE
ANY TRUE if any of the subquery values meet the condition
BETWEEN TRUE if the operand is within the range of comparisons
EXISTS TRUE if the subquery returns one or more records
IN TRUE if the operand is equal to one of a list of expressions
LIKE TRUE if the operand matches a pattern
NOT Displays a record if the condition(s) is NOT TRUE
OR TRUE if any of the conditions separated by OR is TRUE
SOME TRUE if any of the subquery values meet the condition