高手请进来写一条SQL存储过程语句!
发布网友
发布时间:2024-10-02 17:24
我来回答
共2个回答
热心网友
时间:2024-10-05 07:02
存储过程大概是
create proc GetSelect
@classid varchar(50)
begin
select * from News Where ClassID=@classid and DelTF=0 and AuditTF=1 order by AddDate desc,id desc
end
调用跟原来的使用方法一样的
热心网友
时间:2024-10-05 06:54
了解一下存储过程吧