Skip to content

Instantly share code, notes, and snippets.

View jatazoulja's full-sized avatar

Peter Eman Paver Abastillas jatazoulja

View GitHub Profile
@jatazoulja
jatazoulja / gist:d8d563f736a44414cbdcc3998c0c6de8
Created January 21, 2018 06:18 — forked from voskobovich/gist:537b2000108e4781f70b
List of most currency ISO code and symbol format in SQL.
DROP TABLE currency;
-- Create table variable
CREATE TABLE currency (
name VARCHAR(100),
code VARCHAR(100),
symbol VARCHAR(100)
);
-- Insert currency records