회원(users) 테이블의 모든 데이터를 조회하세요.
select *
from `thelook_ecommerce.users`
상품정보(products) 테이블의 모든 데이터를 조회하세요.
select *
from `thelook_ecommerce.products`
주문정보(orders) 테이블의 모든 데이터를 조회하세요.
select *
from `thelook_ecommerce.orders`
회원(users) 테이블의 이메일(email) 정보를 조회하세요.
select email
from `thelook_ecommerce.users`
회원(users) 테이블의 이름(first_name), 성(lastname), 이메일(email), 국가 정보(country)를 조회하세요.
select first_name, last_name, email, country
from `thelook_ecommerce.users`
상품정보(products) 테이블의 id, 카테고리(category), 이름(name), 판매가격(retail_price), 비용(cost)을 조회하세요.
select id,category,name,retail_price,cost
from `thelook_ecommerce.products`
상품정보(products) 테이블의 id, 카테고리(category), 이름(name), 판매가격(retail_price), 비용(cost), 판매이익(판매가격 - 비용)을 조회하세요.