摘要: numpy pandas 初识 #array import numpy as np array = np.array([[1,2,3],[4,5,6]]) print(array) print(array.size) #输出大小 6个元素 print(array.shape) #输出形状 (2,3) 阅读全文
posted @ 2020-09-18 18:18 94小渣渣 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 多表联接 笛卡尔积 select * from table1,table2 -- 显示的记录数是table1 和table2记录数量的积 内连接 select * from table1 inner join table2 on 条件 ; --把不匹配条件的都过滤掉 【相当于where字句】 左外连 阅读全文
posted @ 2020-09-18 14:29 94小渣渣 阅读(103) 评论(0) 推荐(0) 编辑