sqlserver 时间测试
select * from GropBy where [date] BETWEEN '2010-10' and '2015-10' --从字符串转换日期和/或时间时,转换失败。
select * from GropBy where [date] between '2017-07-25 00:00:00' and '2017-07-25 24:00:00' --从字符串转换日期和/或时间时,转换失败。 select * from GropBy where [datetime] BETWEEN '2010-10' and '2015-10' --从字符串转换日期和/或时间时,转换失败。
select * from GropBy where [datetime] between '2017-07-25 00:00:00' and '2017-07-25 24:00:00' --从字符串转换日期和/或时间时,转换失败。 select * from GropBy where [date] BETWEEN convert(datetime,'30-03-2011',105) and convert(datetime,'30-03-2015',105) --从字符串转换日期和/或时间时,转换失败。 select * from GropBy where [date] between GETDATE() and '2017-07-25 24:00:00' --时间超出格式 24:00 use test
select * from GropBy --数据库存储的是2010-10-01 00:00:00:00
select (convert(datetime,'30-03-2011',105)) ---把字符串转换为时间 select 当前日期=convert(varchar(100),getdate(),120) --把时间转化为字符串 --varchar(10)--截取前10位 select * from GropBy where [datetime] BETWEEN '2010-10' AND '2015-10' --出错原因是时间格式不对2015-10
select * from GropBy where [datetime] BETWEEN '2017-07-25 00:00:00' and '2017-07-25 24:00:00' --出错时间格式不正确 原因是24:00 超出时间范围
select * from GropBy where [datetime] BETWEEN '2010-05-01 00:00:00' and '2017-07-25 23:59:59' --可以用
select * from GropBy where 1=1 and [datetime] BETWEEN '2010-05-01' AND '2015-06-15' --可以用
select * from GropBy where [datetime] BETWEEN '2010-05-01' AND '2015-06-15' --可以用
--查询 当天数据的方法 SELECT DATEDIFF(day, CONVERT(char(), getdate(), ), CONVERT(char(), getdate(), )) AS DiffDate --比较时间, 相差0 select getdate() --获得当前时间
SELECT CONVERT(char(), getdate(), ) --格式化时间
select getdate() --获得当前时间 -- ::42.173
SELECT CONVERT(char(), getdate(), ) --格式化时间 -- ::
select convert(varchar(), getdate(), ) ---- select * from 扫码就诊 where convert(varchar(), getdate(), )=convert(varchar(), 就诊日期, ) and 条码编号='信息' SELECT DATEDIFF(day, CONVERT(char(), getdate(), ), CONVERT(char(), getdate(), )) AS DiffDate --比较时间, 相差0 select * from 扫码就诊 where datediff(dd,就诊日期,GETDATE())= and 条码编号='信息' --判断datediff函数和当前时间和就诊时间比较 =0的时候
select (datediff(hh,starttime,endtime)-)/ +
from tb -- 还能 运算...
sqlserver 时间测试的更多相关文章
- SqlServer数据压缩测试
SqlServer数据压缩测试 环境说明 操作系统:WIN SERVER 2012 R2 Standard 数据库系统: SQLSERVER 2016 SP1 Enterprise Evaluatio ...
- 用于.NET环境的时间测试(转)
用于.NET环境的时间测试 在.NET环境中,衡量运行完整算法所花费的时间长度,需要考虑很多 需要考虑很多种情况 ,如:程序运行所处的线程以及无用单位收集(GC垃圾回收). 在程序执行过程中无用单 ...
- SqlServer时间格式化
最近用的SqlServer比较多,时间格式化老是忘记,现整理如下:(来源于网上,具体来源地址忘记了,归根到底MSDN吧) SELECT CONVERT(varchar(50), GETDATE(), ...
- 数据结构和算法 – 番外篇.时间测试类Timing
public class Timing { //startingTime--用来存储正在测试的代码的开始时间. TimeSpan startingTime; //duration--用来存储正在测试的 ...
- SQLServer 脚本测试
最近在做大数据同步的工作.很少数据需要特殊清洗算法,每次测试,都测试全部数据,浪费时间,可以只测试那些特殊数据即可(切记).
- R︱Rstudio 1.0版本尝鲜(R notebook、下载链接、sparkR、代码时间测试profile)
每每以为攀得众山小,可.每每又切实来到起点,大牛们,缓缓脚步来俺笔记葩分享一下吧,please~ --------------------------- 2016年11月1日,RStudio 1.0版 ...
- C#下的时间测试(用于计算方法执行时间)
public class Timing { private TimeSpan m_StartTime; private TimeSpan duringTime; public Timing() //构 ...
- sqlserver 时间格式函数详细
一.时间函数 在使用存储过程,sql函数的时候,会遇到一些对时间的处理.比如时间的获取与加减.这里就用到了sql自带的时间函数.下面我列出这些函数,方便日后记忆,使用. --getdate 获取当前时 ...
- USACO1.5Superprime Rid[附带关于素数算法时间测试]
题目描述 农民约翰的母牛总是产生最好的肋骨.你能通过农民约翰和美国农业部标记在每根肋骨上的数字认出它们.农民约翰确定他卖给买方的是真正的质数肋骨,是因为从右边开始切下肋骨,每次还剩下的肋骨上的数字都组 ...
随机推荐
- Problem 20
Problem 20 问题网址:https://projecteuler.net/problem=20 n! means n × (n − 1) × ... × 3 × 2 × 1阶乘For exam ...
- 5G的前景以及意义
首先来介绍一下5G:5G网络是第五代移动通信网络,其峰值理论传输速度可达每8秒1GB,比4G网络的传输速度快数百倍.举例来说,一部1G的电影可在8秒之内下载完成. 5G的技术原理是:三星电子通过研究和 ...
- 【hihocoder 1329】平衡树·Splay(Splay做法)
[题目链接]:http://hihocoder.com/problemset/problem/1329 [题意] [题解] 插入操作:-,记住每次插入之后都要把它放到根节点去就好; 询问操作:对于询问 ...
- jre1.6下载地址
官方下载地址http://java.sun.com/javase/downloads/widget/jdk6.jsp
- 【ACM】hdu_1004_Let the Balloon Rise
Let the Balloon Rise Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Oth ...
- redis-快照
rdb模式,默认模式 aof模式 如何配置aof模式 第一步:开启是否追加: Please check http://redis.io/topics/persistence for more info ...
- [bzoj2131]免费的馅饼_树状数组
免费的馅饼 bzoj-2131 题目大意: 注释:$1\le n \le 10^5$,$1\le w \le 10^8$. 想法:首先,想到dp 状态:dp[i][j]表示i分钟在位置j的最大收益 优 ...
- redis开发为什么选用skiplist?
There are a few reasons: 1) They are not very memory intensive. It's up to you basically. Changing p ...
- Python之Mysql及SQLAlchemy操作总结
一.Mysql命令总结 1.创建库 create database test1; 2.授权一个用户 grant all privileges on *.* to 'feng'@'%' identifi ...
- Dozer--第三方复制工具,哎哟,还不错!
Dozer简单点说,就是拷贝工具,也是复制工具的意思,官方的解释是:Dozer is a Java Bean to Java Bean mapper that recursively copies d ...