DB/OracleSQL
2021. 7. 13.
Quiz2 - ADSQL
1. 고객 테이블(custs)을 이용하여 다음 조건에 맞는 고객을 검색하세요 select cust_id, fname, credit_limit, gender from custs where credit_limit between 5000 and 9000 and (gender = 'F' or gender is null); 2. 고객 테이블(custs)와 주문 테이블(orders)을 이용하여 다음 조건의 결과를 검색하세요 select lname, order_id, order_date, phone, order_total from custs, orders where custs.cust_id = orders.cust_id and order_mode = 'online'; 3. 주문 테이블(orders)을 활용하여 아..