웹이야기

오라클 연산자 우선순위 본문

D/ORACLE

오라클 연산자 우선순위

yeon.Biju 2020. 3. 16. 10:27

SQL Operator Precedence

  Operator Operation
  +, -(as unary operator), PRIOR, CONNECT_BY_ROOT,   COLLATE   Idetity, negation location in hierarchy
  *, /    Multiplication, devision
  +, -(as binary operators), ||   Addition, substraction, concatenation
SQL conditions are evaluated after SQL operators  

 

sql>SELECT 1+2*3 FROM DUAL ;

   --> 7

 



'D > ORACLE' 카테고리의 다른 글

오라클 연산자  (0) 2020.03.22
오라클 집합 연산자  (0) 2020.03.16
오라클 테이블 목록 조회  (0) 2020.03.13
오라클 JDBC Driver / Oracle JDBC driver 다운로드  (0) 2020.03.10
Oracle JDBC drivers 다운로드  (0) 2020.02.25
Comments