left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录 right join(右联接) 返回包括右表中的所有记录和左表中联结字段相等的记录inner join(等值连接) 只返回两个表中联结字段相等的行举例如下: 表A记录如下:aID aNum1 a200501112 a2 Read More
posted @ 2017-04-18 11:22 花开蝶归 Views(471) Comments(0) Diggs(0)
IOC(DI):其实这个Spring架构核心的概念没有这么复杂,更不像有些书上描述的那样晦涩。Java程序员都知道:java程序中的每个业务逻辑至少需要两个或以上的对象来协作完成,通常,每个对象在使用他的合作对象时,自己均要使用像new object() 这样的语法来完成合作对象的申请工作。你会发现 Read More
posted @ 2017-03-16 13:37 花开蝶归 Views(154) Comments(0) Diggs(0)
<table width="500" border="0" cellspacing="0" cellpadding="0"> <tr> <th>序号</th> <th>城市名称</th> </tr> <c:forEach items="${modify }" var="list" varStatus Read More
posted @ 2017-03-14 09:19 花开蝶归 Views(992) Comments(0) Diggs(0)