摘要: 这边主要用到2个函数 convert() cast()cast是对数据字符类型的转化,例如: cast(date as datetime) 这样就将date字段转化成为时间类型了因为常用到时间的比较20141104这个是比较的时间,那数据的时间肯定也是需要转化为这个样子的,那么就需要用到conve... 阅读全文
posted @ 2014-11-04 12:26 _AfenG 阅读(245) 评论(0) 推荐(0) 编辑
摘要: (转)A、B两表,找出ID字段中,存在A表,但是不存在B表的数据。A表总共13w数据,去重后大约3W条数据,B表有2W条数据,且B表的ID字段有索引。方法一 使用 not in ,容易理解,效率低 ~执行时间为:1.395秒~1 select distinct A.ID from A where... 阅读全文
posted @ 2014-11-04 12:22 _AfenG 阅读(301) 评论(0) 推荐(0) 编辑