본문 바로가기

SQL

SQL 1주차

selct *
from table



SELECT order_id ord_no,
price "가격",
quantity "수량"
from food_orders fo 




select name "이름", 
email "e-mail"
from customers c


SELECT restaurant_name '식당명', customer_id '고객번호'
FROM food_orders fo
where food_preparation_time between 20 and 30
and cuisine_type ='Korean'

'SQL' 카테고리의 다른 글

SQL 1주차 라이브세션 과제 (1~3회) (작성중)  (0) 2024.06.27
SQL 피벗 테이블 ( 드디어!!)  (0) 2024.05.31
SQL 5주차 강의 내용  (0) 2024.05.31
SQL 3주차  (0) 2024.05.27
SQL 2주  (1) 2024.05.23