Computer Science/DataBase

Google BigQuery로 진행 (조회 기능에 대해서 배울 것이기 때문) SELECT, FROM SELECT : DB 데이터 조회 FROM : 어디서 정보를 가져올 것인지 지정 SELECT의 경우 여러 개의 Column을 선택할 수 있다. -- thelook_ecommerce.users의 모든 정보를 출력 select * from `thelook_ecommerce.users`; -- thelook_ecommerce.users에서 first_name이라는 column 선택해 출력 select first_name from `thelook_ecommerce.users`; -- thelook_ecommerce.users에서 first_name과 last_name이라는 column 선택해 출력 select i..
제로버드
'Computer Science/DataBase' 카테고리의 글 목록