摘要: c代表Class:类m代表Method:方法F代表Function:函数f代表Field:域v代表Variable:变量p代表Property:python内置函数p代表Parameter:参数<>代表Element:元素Directory:目录Package:包 Python中函数(Functio 阅读全文
posted @ 2020-06-13 13:50 摘苹果 阅读(882) 评论(0) 推荐(0) 编辑
摘要: 普通生成器: j =[x*8 for x in range(10)]#普通列表生成式 j2 = (x*8 for x in range(10))#普通生成器 ,只需将 [ 改成( 即可。 print(j2)#能看到打印出的是生成器的内存地址,说明生成器返回的并不是列表,生成器只是可迭代的数列算法。 阅读全文
posted @ 2020-06-13 12:27 摘苹果 阅读(112) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/i-tao/p/11419900.html<日期函数>https://www.cnblogs.com/phpper/p/7587031.html<触发器>https://www.cnblogs.com/whgk/p/6179612.html <触发器> 阅读全文
posted @ 2020-06-02 09:05 摘苹果 阅读(171) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/zhstum/p/12590477.html 阅读全文
posted @ 2020-05-31 22:38 摘苹果 阅读(105) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/phpper/p/7587031.html<精品好文> 阅读全文
posted @ 2020-05-27 22:42 摘苹果 阅读(72) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/whgk/p/6179612.html <精品好文> 阅读全文
posted @ 2020-05-27 21:57 摘苹果 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 数据分组:select column_name count(*) as new_name from table_name group by column_name 分组语法 having count(*)>= 100; 筛选组别语法 输入▼ SELECT vend_id, COUNT(*) AS n 阅读全文
posted @ 2020-05-18 14:50 摘苹果 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 修改表列名:alter table table_name change column old_column_name new_column_name the_type_of_date ; sql聚集函数:select avg(`column_name`) as avg_column_name fro 阅读全文
posted @ 2020-05-18 14:23 摘苹果 阅读(178) 评论(1) 推荐(0) 编辑