Retail_manager/RMData/dbo/Stored Procedures/spProductGetAll.sql
s459315 0957963cad Added Taxable to Products
Added the ability to tax products for sale
2022-07-23 23:56:50 +02:00

9 lines
199 B
Transact-SQL

CREATE PROCEDURE [dbo].[spProductGetAll]
AS
BEGIN
SET NOCOUNT ON;
select Id, ProductName, [Description], RetailPrice, QuantityInStock, IsTaxable
from [dbo].[Product]
order by ProductName;
END