Currencies
Create, update, delete, and query currencies used in SuiteCRM financial trackings
テーブル固有の情報
Select
WHERE 句で任意の条件を使用して、Currencies テーブルをクエリできます。本製品 はSuiteCRM API を使用して結果をフィルタリングします。
SELECT * FROM Currencies WHERE [Conversion Rate] > 2.34
Insert
書き込み可能なカラムを指定して、Currency を作成します。
INSERT INTO Currencies ([Iso 4217 Code], [Currency Name]) VALUES ('CAD', 'Canadian Dollar')
Update
Id を指定して、書き込み可能なCurrency カラムを更新できます。
UPDATE Currencies SET [Conversion Rate] = 1.18 WHERE Id = 'Test123'
Delete
Id を指定して、Currency を削除します。
DELETE FROM Currencies WHERE Id = 'Test123'
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | String | False |
The unique identifer of the currency. |
| ConversionRate | Double | False |
Conversion rate factor (relative to stored value). |
| CreatedById | String | False |
Id of the user who created the record. |
| CreatedByName | String | False |
Id of the user who created the record. |
| CurrencyName | String | False |
Name of the currency. |
| CurrencySymbol | String | False |
Symbol representing the currency. |
| DateCreated | Datetime | False |
Date the record was created. |
| DateModified | Datetime | False |
Date the record was last modified. |
| Deleted | Bool | False |
Record deletion indicator. |
| hide | String | True |
Hide status of the currency |
| ISO4217Code | String | False |
3-letter identifier specified by ISO 4217 (e.g., USD). |
| Status | String | False |
Currency status. |
| unhide | String | True |
Unhide status of the currency |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| Rows@Next | String |
Identifier for the next page of results. Do not set this value manually. |