摘要:
create proc sp_name(@p1 int,@p2 int OUTPUT) AS if @p1=1 set @p2=1 else set @p2=0 return @p2 declare @p1 int,@p2 int set @p1=1 exec sp_name @p1,@p2 output select @p2 阅读全文
摘要:
在oracle中处理日期大全 TO_DATE格式 Day: dd number 12 dy abbreviated fri day spelled out friday ddspth spelled out, ordinal twelfth Month: mm number 03 mon abbreviated mar month spelled o... 阅读全文