摘要: 转自: http://bbs.csdn.net/topics/360146372 阅读全文
posted @ 2016-07-18 20:30 圆旭 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 我在mysql中有这样一段代码 SQL code ? 1 2 3 4 5 6 7 8 declare @byte1 binary(1) declare @byte2 binary(1) declare @smallint smallint set @smallint = 675 set @byte1 阅读全文
posted @ 2016-07-18 20:08 圆旭 阅读(313) 评论(0) 推荐(0) 编辑
摘要: left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录 right join(右联接) 返回包括右表中的所有记录和左表中联结字段相等的记录inner join(等值连接) 只返回两个表中联结字段相等的行 from: http://www.cnblogs.com/pcjim/ 阅读全文
posted @ 2016-07-18 19:53 圆旭 阅读(157) 评论(0) 推荐(0) 编辑