OtherAddresses
OtherAddresses テーブルからデータを返します。
Select
本製品 は Bcart API を使用して、以下のカラムと演算子で構築されたWHERE 句条件を処理します。その他のフィルタはクライアントサイドで本製品 内部で処理されます。
- ほとんどのカラムは次の演算子をサポートしています:<、>、<=、>=、=、!=、IN、NOT_IN。
SELECT * FROM OtherAddresses WHERE Name = 'Sample Addresses' SELECT * FROM OtherAddresses WHERE Id IN (1, 10) SELECT * FROM OtherAddresses WHERE CustomerId <= 5
Insert
OtherAddresses を追加するには、Name、CustomerId、および読み取り専用ではないカラムを指定します。
INSERT INTO OtherAddresses (Name, Zip, Pref, Address1, Address2, CustomerId) VALUES ('Sample Address', '123-4567', 'Miyagi', 'Sendai', 'CData', 9999)
Bulk Insert
INSERT INTO OtherAddresses#TEMP (Name, Zip, Pref, Address1, Address2, CustomerId) VALUES ('Sample Address 1', '123-4567', 'Miyagi', 'Sendai', 'CData', 9999) INSERT INTO OtherAddresses#TEMP (Name, Zip, Pref, Address1, Address2, CustomerId) VALUES ('Sample Address 2', '123-4567', 'Miyagi', 'Sendai', 'CData', 9999) INSERT INTO OtherAddresses (Name, Zip, Pref, Address1, Address2, CustomerId) SELECT Name, Zip, Pref, Address1, Address2, CustomerId FROM OtherAddresses#TEMP
Update
Bcart は、Name、Zip、および読み取り専用ではないカラムの更新を許可します。
UPDATE OtherAddresses SET Name = 'Sample Address' WHERE Id = 2
Bulk Update
INSERT INTO OtherAddresses#TEMP (Id, Name) VALUES (1, 'Sample Address 1') INSERT INTO OtherAddresses#TEMP (Id, Name) VALUES (2, 'Sample Address 2') UPDATE OtherAddresses (Id, Name) SELECT Id, Name FROM OtherAddresses#TEMP
Delete
Delete はこのテーブルではサポートされていません。
Columns
Name | Type | ReadOnly | Description |
Id [KEY] | Integer | True | |
CustomerId | Integer | False | |
DestinationCode | String | False | |
CompName | String | False | |
Department | String | False | |
Name | String | False | |
Zip | String | False | |
Pref | String | False | |
Address1 | String | False | |
Address2 | String | False | |
Address3 | String | False | |
Tel | String | False |