Tagged Questions
2
votes
1answer
576 views
How to modify a stored procedure using SQLCMD for MS SQL?
Suppose a stored procedure as follows have been created using the Microsoft SQL Management Studio.
use testbase
go
create procedure testtable_pricesmaller
@pricelimit money
as
select * from ...