SQL语句
冷月无声_x
这个作者很懒,什么都没留下…
展开
-
将A表中某个字段的值赋给B表某个字段
update A set A.KZXM = (select B.xm from B where A.ID=B.ID and rownum原创 2014-07-24 13:43:49 · 8566 阅读 · 0 评论 -
postgresql查询某时间区间的所有日期
核心sql如下:select daytime::date from generate_series(('2017-06-01'),--查询开始日期(可根据需求调整) (select now()::date),--查询结束日期(可根据需求调整) '1 day'--间隔(可根据需求调整)) s(daytime)以上sql,得到结果为从6月1号到今天这个时间区间原创 2017-06-06 14:18:12 · 9938 阅读 · 0 评论