Skip to content

Instantly share code, notes, and snippets.

View egroj97's full-sized avatar
😀

Jorge Luis Rodríguez González egroj97

😀
  • Orison Inc.
  • Mérida, Venezuela
  • X @egroj97
View GitHub Profile
@egroj97
egroj97 / esalee-db-final.sql
Created January 12, 2022 04:13
Final project for ESLAEE DB Course.
CREATE TABLE IF NOT EXISTS locations
(
timezone CHARACTER NOT NULL,
latitude INTEGER NOT NULL,
ocean VARCHAR(255) NOT NULL,
geographic_reference VARCHAR(255),
name VARCHAR(255),
PRIMARY KEY (timezone, latitude)
);