IT/SQL

DAY 2

08Gattuso 2022. 5. 18. 00:37

1. select

 - 어떤 데이터를 보고싶은지 선택(select)

 - 모든 행을 보고싶다 = *

 - 특정행을 보고싶다 ( select job_id from table_name)

 - ex] select * from dba_objects : dba_objects 테이블의 모든 데이터 조회

   ex] select object_name, object_type from dba_objects : dba_objects 테이블의 object_name, object_type의 값 조회