「ストアドプロシージャがMS SQL Server Management Studioで作成されていても、ストアドプロシージャが見つかりませんでした」
次の構造を持つテーブルtesttableをデータベース内に作成しましたtestbase。 product_no (int, not null) product_name (varchar(30), not null) price (money, null) expire_date (date, null) expire_time (time(7), null) Microsoft SQL Server 2008 Management Studioを使用しました。 testtable_pricesmaller次のようにストアドプロシージャを作成しました use testbase go create procedure testtable_pricesmaller @pricelimit money as select * from testtable where price = @pricelimit; go Object ExplorerMicrosoft SQL Server Management Studioでストアドプロシージャを表示できます。(次のツリー構造にリストされていますObject Explorer) …