摘要: connection = pymysql.connect(host = '139.******', port = 3918, user = 'admin', password = '**********', db = 'information_schema', charset='GBK', curs 阅读全文
posted @ 2017-07-21 17:43 Aogon 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 创建左连接 语句如下:select * from A Left JOIN B ON A.Aid=B.Bnameid 用一个表的某些列update另一个表 SET SQL_SAFE_UPDATES = 0; #安全模式下不能升级,改成0update customer, history set cust 阅读全文
posted @ 2017-07-21 15:03 Aogon 阅读(109) 评论(0) 推荐(0) 编辑
摘要: INSERT INTO data_test_2.dim_customer(id,name) SELECT id,name FROM 007_sell.white_list update 更多操作http://blog.csdn.net/evan_endian/article/details/8652 阅读全文
posted @ 2017-07-20 15:27 Aogon 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 先从关联表导出代码,再使用代码创建数据表 在MySQL Workbench中,使用file->Export ->Forward Engineer SQL Script ->Omit Schema Qua.....->next->export mysql table objects ->next即可得 阅读全文
posted @ 2017-07-20 14:08 Aogon 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 关于Error Code: 1005. Can't create table 'data_test.dim_event' (errno: 150) 在创建两个表的外联时,遇到的无法创建表的问题,需要把非主键的值设为索引 CREATE TABLE IF NOT EXISTS `dwd_event_do 阅读全文
posted @ 2017-07-20 13:58 Aogon 阅读(284) 评论(0) 推荐(0) 编辑