Last active
September 27, 2021 18:34
-
-
Save afcotroneo/77d9defa912e87f3cfd3c7b9cfcab592 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| createQuery = "CREATE TABLE noaa_data_table_name ( | |
| id TEXT ENCODING DICT(32), | |
| dt DATE ENCODING DAYS(16), | |
| element_ TEXT ENCODING DICT(8), | |
| value_ SMALLINT, | |
| m_flag TEXT ENCODING DICT(8), | |
| q_flag TEXT ENCODING DICT(8), | |
| s_flag TEXT ENCODING DICT(8), | |
| obs_time TEXT ENCODING DICT(16));" | |
| con.execute(createQuery) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment