摘要: import matplotlib.pyplot as plt # The slices will be ordered and plotted counter-clockwise. labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' sizes = [15, 30, 45, 10] colors = ['yellowgreen', 'gold', 'lights... 阅读全文
posted @ 2016-08-30 16:19 专注it 阅读(259) 评论(0) 推荐(0) 编辑
摘要: MyISAM 和 InnoDB 讲解 InnoDB和MyISAM是许多人在使用MySQL时最常用的两个表类型,这两个表类型各有优劣,视具体应用而定。基本的差别为:MyISAM类型不支持事务处理等高级处理,而InnoDB类型支持。MyISAM类型的表强调的是性能,其执行数度比InnoDB类型更快,但是 阅读全文
posted @ 2016-08-30 14:34 专注it 阅读(198) 评论(0) 推荐(0) 编辑