CREATE TABLE csv-target
The table csv-target
contains:
- a STRING unique identifier
- STRING and INT data type columns
Before you begin
CREATE TABLE statement
CREATE TABLE csv-target (
_id string,
name string,
description string,
gender string,
country string,
occupation string,
birth_year int,
death_year int,
death_manner string,
birth_age int
);