"ไม่พบโพรซีเดอร์ที่เก็บไว้ 'แม้ว่าจะสร้างโพรซีเดอร์ที่เก็บไว้ใน 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 …