摘要: begin transaction …… commit transaction 阅读全文
posted @ 2005-04-27 11:46 魔豆 阅读(921) 评论(0) 推荐(0) 编辑
摘要: select Min(VisitTime),count(*) as Num from online group by datediff(day,VisitTime,getdate()) 阅读全文
posted @ 2005-04-27 11:44 魔豆 阅读(2664) 评论(1) 推荐(1) 编辑
摘要: convert(varchar(10),date1,120) 阅读全文
posted @ 2005-04-27 11:43 魔豆 阅读(1207) 评论(0) 推荐(0) 编辑
摘要: 方法一: sp_MShelpcolumns '表名' 方法二: sp_help '表名' 方法三: select * from information_schema.columns where table_name='表名' 三种方法查出来的效果不一样,可以根据情况选择使用. 阅读全文
posted @ 2005-04-27 11:40 魔豆 阅读(478) 评论(0) 推荐(0) 编辑
摘要: select datepart(weekday,getdate()) 1为星期日,2为星期一,3为星期二,…… 阅读全文
posted @ 2005-04-27 11:37 魔豆 阅读(1384) 评论(0) 推荐(0) 编辑
摘要: declare @dt datetime set @dt=getdate() select 32-Day(@dt+(32-Day(@dt))) 阅读全文
posted @ 2005-04-27 11:35 魔豆 阅读(781) 评论(0) 推荐(0) 编辑
摘要: select identity(int,1,1) as id,username into #temp from table1 group by username select * from #temp 阅读全文
posted @ 2005-04-27 11:32 魔豆 阅读(789) 评论(0) 推荐(0) 编辑
摘要: DBCC checkident(tablename,RESEED,1) 阅读全文
posted @ 2005-04-27 11:31 魔豆 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 下面的示例将登录用户的密码由ok改为coffee EXEC sp_password 'ok','coffee' 阅读全文
posted @ 2005-04-27 11:29 魔豆 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 下例将表customers重命名为custs EXEC sp_rename 'customers','custs' 阅读全文
posted @ 2005-04-27 11:27 魔豆 阅读(14981) 评论(0) 推荐(1) 编辑
摘要: 代码如下: 阅读全文
posted @ 2005-04-27 11:21 魔豆 阅读(728) 评论(0) 推荐(0) 编辑
摘要:     Cω是微软研究院对下一代语言的探索。它扩展了C#的功能,更好的支持数据访问(SQL和XML)和并发控制。Cω的希望能方便的开发出更加可靠且维护性更好的软件,其中一个重要的概念就是"尽早的发现错误"。在下面的一个数据库查询的例子中将很好的体现出这一点。     现在我想得到一个在某个城市的员工... 阅读全文
posted @ 2005-04-08 09:46 魔豆 阅读(864) 评论(0) 推荐(0) 编辑
摘要: 使用示例: this is a test">test 阅读全文
posted @ 2005-04-07 17:17 魔豆 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 关键部分在这里: onkeydown="if(event.keyCode==116){mainFrame.location.reload();event.returnValue=false;} 阅读全文
posted @ 2005-04-07 16:35 魔豆 阅读(2692) 评论(2) 推荐(0) 编辑
摘要: 1.新建对象 var myObj = new Object(); myObj.name = "Fred"; myObj.age = 42; 相当于: var myObj = { name : "Fred", age : 42 }; 2.对象引用 myObj.name 3.迭代输出 for(o in myObj) { alert("key:" +... 阅读全文
posted @ 2005-04-07 10:46 魔豆 阅读(419) 评论(0) 推荐(0) 编辑