-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90e6e23
commit 92b904a
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
CREATE TABLE IF NOT EXISTS spark_demo.us_unemployment_stats ( | ||
year int PRIMARY KEY, | ||
agriculture_part_count int, | ||
civil_labor_count int, | ||
civil_non_institutional_count int, | ||
employed_count int, | ||
employed_percentage double, | ||
footnotes text, | ||
labor_population_percentage double, | ||
non_agriculture_part_count int, | ||
not_labor_count int, | ||
unemployed_count int, | ||
unemployed_percentage_to_labor double | ||
); |