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

11 lines
204 B
MySQL
Raw Normal View History

CREATE PROCEDURE [dbo].[spProductGetById]
@Id int
AS
BEGIN
SET NOCOUNT ON;
select Id, ProductName, [Description], RetailPrice, QuantityInStock, IsTaxable
from [dbo].[Product]
where Id = @Id;
END