Oracle
Oracle 문법 정리
🌱 오늘의 주제 : Oracle 문법 정리 🌱 Single Row Functions initcap : 첫 글자는 대문자로 변경select initcap('hello my name is yuri')from dual; length : 글자 수 출력select length(ename) as lengthfrom emp; substr: 글자 자르기 (첫 순서, 끝 순서)select substr('hello', 2 ,2)from dual; 🌱 Grouping FunctionsNO group functions in where clause (Only single row functions allowed in WHERE clause) 그 대신에, having을 사용! groupy by..