Skip to content

Instantly share code, notes, and snippets.

View jorgsowa's full-sized avatar
🤷‍♂️

Jorg Adam Sowa jorgsowa

🤷‍♂️
View GitHub Profile
@jorgsowa
jorgsowa / ISO currencies
Last active March 26, 2024 07:40
Table with all currencies for MySQl database
# List of currencies based on the official ISO standard
# https://www.currency-iso.org/en/home/tables/table-a1.html
CREATE TABLE `currencies` (
country VARCHAR(100),
currency VARCHAR(100),
code VARCHAR(4),
minor_unit SMALLINT,
symbol VARCHAR(100)
);