Price_List_Items
table
Column | Type |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Examples
SELECT
*
FROM
Price_List_Items
WHERE
Item_Type = 'Months'
INSERT INTO
Price_List_Items (
Code,
Quantity,
Item_Type,
[Description],
Price,
Sales_Tax_Rate,
Category
)
VALUES
(
'CS001',
'1',
'Months',
'Monthly Cloud Storage',
'9.99',
'20',
'https://api.freeagent.com/v2/categories/001'
)
UPDATE Price_List_Items
SET
Price = 10.99
WHERE
Code = 'CS001'
DELETE FROM Price_List_Items
WHERE
Code = 'CS001'