摘要: 在github上创建仓库:Create a new repository on the command linetouch README.mdgit initgit add README.mdgit commit -m "first commit"git remote add origin http... 阅读全文
posted @ 2016-01-12 12:37 jack_ou 阅读(3469) 评论(0) 推荐(1)
摘要: 前几天写了Mysql跨表更新的一篇总结,今天我们看下跨表删除。在Mysql4.0之后,mysql开始支持跨表delete。Mysql可以在一个sql语句中同时删除多表记录,也可以根据多个表之间的关系来删除某一个表中的记录。假定我们有两张表:Product表和ProductPrice表。前者存在Pro... 阅读全文
posted @ 2016-01-12 11:22 jack_ou 阅读(1973) 评论(0) 推荐(0)