SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[GetStuInf] @className nvarchar(50), @Age int as begin select * from Students where [email protected] and Age>@Age end
时间: 2024-10-03 16:28:47
SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[GetStuInf] @className nvarchar(50), @Age int as begin select * from Students where [email protected] and Age>@Age end