摘要:
一、表关系 MySQL常见习题: 1.查询平均成绩大于60分的同学的学号和平均成绩。 select student_id,avg(num) from score GROUP BY student_id HAVING avg(num) as C成绩> 60;(不能直接写聚合函数,要将聚合函数命名一下) 阅读全文
摘要:
https://www.cnblogs.com/stephenmc/p/8505185.html 阅读全文
摘要:
https://www.cnblogs.com/ssyfj/p/9084942.html 阅读全文
摘要:
R基础 https://www.cnblogs.com/einyboy/p/3182589.html 阅读全文
摘要:
数据透视表 https://www.sohu.com/a/142164680_609368 http://www.360doc.com/content/17/0922/21/38810165_689306615.shtml 阅读全文
摘要:
BI基本架构和ETL理解 https://blog.csdn.net/duqiangatom/article/details/8308985 ETL https://blog.csdn.net/zhongguomao/article/details/53769919 大并发数据优化 https:// 阅读全文
摘要:
https://www.cnblogs.com/yihr/p/7516395.html 阅读全文
摘要:
python常见面试题: https://www.cnblogs.com/duanhaoxin/p/10022303.html python库大全: https://www.cnblogs.com/it-tsz/p/8724556.html 阅读全文
摘要:
python题 1.类方法(classmethod):1.在python中.类方法 @classmethod 是一个函数修饰符,它表示接下来的是一个类方法,而对于平常我们见到的则叫做实例方法。 类方法的第一个参数cls,而实例方法的第一个参数是self,表示该类的一个实例。 2.普通对象方法至少需要 阅读全文
摘要:
归并排序: 1.算法思想 阅读全文