728x90
Understanding of SQL
select * from EMP; 라는 문장은 SQL Statement 라고 할 수 있고, SQL Statement 안에는 다양한 keyword 로 구성되어 있다. select 로 하나의 keyword 이다. select keyword needs minimum expression like we just did at the moment.
select keyword 의 Expression 은 다음과 같다.
Select <column> From <table>
이것이 select minimum expression 이다.
이러한 Select expression 을 우리는 Query 라고도 부른다. Select expression 을 통해 우리는 DB의 데이터를 바꾸지 않고 그저, 어떤 정보들이 DB 안에 있는지 묻는데, 이것이 바로 Query 의 핵심이다. 즉, select keyword 가 바로 지금의 sql 을 Query 로 만들어주는 핵심 keyword 인 것이다.
'[Udemy] > Oracle SQL(Imtiaz Ahmad)' 카테고리의 다른 글
15. Query Filtering Conditions & Operator Precedence (0) | 2023.09.09 |
---|---|
10. Using Operators in the WHERE Clause (0) | 2023.09.06 |
8. Using the WHERE Clause in a Query (0) | 2023.09.06 |
3. IMPORTANT: Prepare the Sample Data (0) | 2023.09.05 |
2. Creating the workspace in oracle (0) | 2023.09.05 |