Skip to main content

Currency Identifier

Data Dictionary - Entity Table: Currency_Identifier#

This table links Currency and Currency identifier types. Best practice is to use ISO 4217 for standard currency codes. The type of currency code which is maintained in the table can be defined by the Currency_Identifier table. ISO 4217 maintaince 2 types of currency codes: alphabetic code and numeric code.

Primary Key ('id').ENGINE = InnoDB..
Column NameData TypePK Primary Key, NN-Not Null, NullExampleComments
idBIGINT(12)PK, NN1PrimaryKey-ID (auto creates),Contains the external identifier of credit limits
currency_idBIGINT(12)NotNull2Relates to Currency Table
currency_identifier_ type_idBIGINT(12)NotNull12See Currency_Identifier_Type Table
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
Identifier_Currency(currency_id)Currency (id)NO ACTIONNO ACTION
currency_identifier_ type_id(currency_identifier_ type_id)Currency_Identifier_Type (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
currency_id_idxCurrency_Identifier(currency_id ASC)VISIBLE.
currency_identifier_ type_id_idxCurrency_Identifier(currency_identifier_ type_id ASC)VISIBLE.