2014年2月24日

sql语句笔记-2014-2-24

摘要: A 表 (充值记录表) 有以下的字段 -------hisreload 表ID (递增) , ToMobile(冲往哪个手机号) ,refID (guid ,表示一次事务) ......----------------------------------------------B表(transactions)有以下字段refID(与A表关联) , opTime (操作时间) ........--------------------------------------------想实现的功能是: 查询 所有手机号及其最后一次充值记录 , 并对操作时间过滤, 例如去掉 最后一次充值在 2013-9 阅读全文

posted @ 2014-02-24 14:29 齐文宣 阅读(216) 评论(0) 推荐(0)

inner join 和 left join 的 区别

摘要: inner join :The INNER JOIN keyword selects all rows from both tables as long as there is a match between the columns in both tables.left join :The LEFT JOIN keyword returns all rows from the left table (table1), with the matching rows in the right table (table2). The result is NULL in the right side 阅读全文

posted @ 2014-02-24 13:59 齐文宣 阅读(5310) 评论(0) 推荐(0)

导航