upper(),lower() 함수는 문자열 데이터들의 대소문자를 변경할 수 있는 함수이다. upper() 대문자 / lower() 소문자를 변경할 수 있다. 아래의 그림에서 select title from books; (71번) title 이란 컬럼안에 문자열 데이터를 보여준 것이다. select upper(title) as tilte from books; (72번) 는 title 안에 문자열 데이터를 대문자로 만들으라는 의미이며, select lower(title) as tilte from books; (73번) 의 경우 title 안에 문자열 데이터를 소문자로 만들어라 라는 의미를 가지고 있다.