Skip to content

Instantly share code, notes, and snippets.

@acisse1
acisse1 / astronauts.sql
Created December 12, 2023 23:25 — forked from pamelafox/astronauts.sql
NASA astronauts, 1959-Present
/* Source:
https://www.kaggle.com/nasa/astronaut-yearbook
*/
CREATE TABLE astronauts(
Name TEXT PRIMARY KEY,
Year INTEGER,
GroupNum INTEGER,
Status TEXT,
Birth_Date TEXT,
Birth_Place TEXT,