04 2008 档案

摘要:create proc proc_publisher @state char(2),@pub_name nvarchar(40)='%'/*这里使用通配符*/ as set nocount on /*此句代码不可少,下有详细说明*/ select * into #tabletem from publishers where state=@state and pub_name=@pub_name... 阅读全文
posted @ 2008-04-01 16:35 phoenixmajie 阅读(252) 评论(0) 推荐(0)
摘要:function isDate(str) { var reg = /^((((1[6-9]|[2-9]\d)\d{2})-(0?[13578]|1[02])-(0?[1-9]|[12]\d|3[01]))|(((1[6-9]|[2-9]\d)\d{2})-(0?[13456789]|1[012])-(0?[1-9]|[12]\d|30))|(((1[6-9]|[2-9]\d)\d{2})-0?2-... 阅读全文
posted @ 2008-04-01 16:33 phoenixmajie 阅读(116) 评论(0) 推荐(0)