Skip to content

Instantly share code, notes, and snippets.

@paschim
paschim / gist:52de22e6ad2993011f066f1226191c65
Created October 31, 2020 04:33 — forked from voskobovich/gist:43f851859c23a8261514
The list of countries with currency (ISO code and symbol) format in SQL.
DROP TABLE currency;
-- Create table variable
CREATE TABLE currency (
country VARCHAR(100),
currency VARCHAR(100),
code VARCHAR(100),
symbol VARCHAR(100)
);