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

9 lines
169 B
MySQL
Raw Normal View History

CREATE PROCEDURE [dbo].[spInventoryGetAll]
AS
BEGIN
SET NOCOUNT ON;
SELECT [Id], [ProductId], [Quantity], [PurchasePrice], [PurchaseDate]
from dbo.Inventory;
END