Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
declare @customerid -- some datatype. You can't use like with numeric values, only character values.
Select * from Orders
Where CustomerID LIKE @customerid
Create Procedure GetOrderForCustomer
@CustomerId Integer
As
Select Field1, Field2, Field3
From Orders
Where CustomerId = @CustomerId