Skip to content

๐Ÿ’ต Currency

Currency Entity

The following properties for fin_currency table:

Name Type Description Unique Required
currency_id INT Primary key, unique currency ID โœ… โœ…
currency_name String Name of the currency โŒ โœ…
currency_symbol String Symbol of the currency โŒ โŒ
currency_postfix String An optional postfix currency symbol โŒ โŒ
currency_prefix String An optional prefix currency symbol โŒ โŒ

NOTE - Unique: Ensures the uniqueness of the values entered into a property of a database table. - Required: Ensures that the values entered a property of a database table can NOT be NULL.

Curency Usage

The fin_currency table serves as a central repository for the currency information. The fin_currency table empowers financial systems to handle diverse currencies seamlessly, and supporting any transactions type.

  1. currency_id (INT):
  2. This column serves as the primary key for the table.
  3. It uniquely identifies each currency record.
  4. Typically, this value is automatically generated (e.g., using auto-increment) when a new currency is added to the system.
  5. Usage: Used for referencing specific currencies in other tables or queries.

  6. currency_name (String):

  7. Represents the name of the currency (e.g., "IDR Rupiah", "US Dollar," "Euro," "Japanese Yen").
  8. Not necessarily unique (multiple currencies can have the same name).
  9. Usage: Displayed to end users in applications, reports, or interfaces.

  10. currency_symbol (String):

  11. Contains the symbol associated with the currency (e.g., "$" for US Dollar, "โ‚ฌ" for Euro, "ยฅ" for Japanese Yen).
  12. Not necessarily unique (multiple currencies can share the same symbol).
  13. Usage: Displayed alongside the currency amount to indicate the currency type (e.g., $100).

  14. currency_postfix (String):

  15. Represents an optional postfix symbol (e.g., "K" for thousands, "M" for millions) that can be appended to the currency amount.
  16. Usage: Displayed postfix alongside the currency amount to indicate the currency (e.g., 100 IDR).

  17. currency_prefix (String):

  18. Similar to currency_postfix, but represents an optional prefix symbol (e.g., "USD" for US Dollar, "EUR" for Euro).
  19. Usage: Displayed prefix alongside the currency amount to indicate the currency (e.g., Rp 100).

Powered by Berani Digital ID ยฉ 2024