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-12-15 07:14:44
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