Retail_manager/RMData/dbo/Stored Procedures/spProductGetAll.sql
s459315 57d2ab60a7 Created Sales View and Database prodecures for displaying items.
Created and binded a View, created logic behind Cart Product Model
2022-07-23 17:09:13 +02:00

9 lines
188 B
Transact-SQL

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