摘要:
其中,insert into item_orders select item_id,GROUP_CONCAT(order_id) from itemorder group by item_id 可以使得 例如, 参考:http://zhidao.baidu.com/link?url=nBf36qJy 阅读全文
摘要:
假如有这样一个方法签名 这表示GetSomethingList是个泛型方法,调用的时候需要确定T到底是什么类型,但这里类型T需满足 where T:class,new() 这个条件, 其中 where T:class,表示T必须是引用类型(而不是int等值类型,或者ValueType的其他子类),n 阅读全文
摘要:
left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录 right join(右联接) 返回包括右表中的所有记录和左表中联结字段相等的记录inner join(等值连接) 只返回两个表中联结字段相等的行 举例如下: 表A记录如下:aID aNum1 a200501112 a 阅读全文
摘要:
this指向哪里? 一般而言,在Javascript中,this指向函数执行时的当前对象。 In JavaScript, as in most object-oriented programming languages, this is a special keyword that is used 阅读全文