
数据库
diygwcom
这个作者很懒,什么都没留下…
展开
-
sql server日期时间函数
Sql Server中的日期与时间函数 1.当前系统日期、时间 select getdate() 2. dateadd在向指定日期加上一段时间的基础上,返回新的 datetime 值 例如:向日期加上2天 select dateadd(day,2,'2004-10-15')--返回:2004-10-17 00:00:00.000 3. datediff 返回跨两个指定...2007-10-11 10:51:00 · 92 阅读 · 0 评论 -
sql树型应用总结
--测试数据 if object_id('[T]') is not null drop table [T] create table [T] (ID int,PID int,NAME varchar(10)) insert into [T] select 1,0,'A' union all select 2,1,'B' union all select 3,2,'C' union al...2008-08-22 16:16:00 · 98 阅读 · 0 评论 -
sqlserver实现取相同名称放在同一字段
if object_id('[tbtest]') is not null drop table [tbtest] create table tbtest ( A varchar(10) not null, B varchar(50) not null ) go insert into tbtest select 'A',1 union all select'...2008-08-22 16:36:00 · 416 阅读 · 0 评论