Retail_manager/RMData/dbo/Stored Procedures/spProductGetAll.sql

9 lines
199 B
MySQL
Raw Normal View History

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