摘要:
select [PR].[RegionID] AS ID,count(*) as cnt from dbo.PositionRecruiting [pr] where IsPublic = 'Y' AND [regionID] = @regionID group by [PR].[RegionID] UNION select [PR].[RegionID],count(*) as cnt from... 阅读全文
摘要:
这是一个语句 select case cast(rand()*10 as int)%4 when 0 then 0 when 1 then 1 when 2 then 2 when 3 then 3 else 4 end 这样执行的结果经常出现一个 4 ?? 为什么啊 这样写 就不会出现4 select cast(rand()*10 as int)%4 if(abs... 阅读全文
摘要:
如何添加RSS和读取RSS WebForm3.aspx 在html 页面中只有这一句哦; 不能有任何HTML标签 HTML C# using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using Sys... 阅读全文