01 2020 档案

mysql函数
摘要:1、mysql内置函数 2、自定义函数 SQL不允许在函数里进行查询操作(有结果集的) 但允许以下情形: declare a int; select nid into a from student where name='alex' 调用函数: select 函数名(参数) 阅读全文

posted @ 2020-01-17 10:41 屾哥 阅读(109) 评论(0) 推荐(0)

python中join()函数的使用方法
摘要:原文链接: https://www.cnblogs.com/sui776265233/p/10755525.html 函数:string.join() Python中有join()和os.path.join()两个函数,具体作用如下: join(): 连接字符串数组。将字符串、元组、列表中的元素以指 阅读全文

posted @ 2020-01-17 10:31 屾哥 阅读(681) 评论(0) 推荐(0)

mysql的三种循环使用方法 while loop repeat
摘要:https://www.cnblogs.com/weibanggang/p/9678312.html 阅读全文

posted @ 2020-01-15 14:38 屾哥 阅读(430) 评论(0) 推荐(0)

mysql学习笔记(2)
摘要:视图: create view XXX as 「一个sql语句」 视图:创建一个临时表。在视图里不允许删除、更新,只允许查找。 使用视图: select * from XXX 存储过程: delimiter $$ create procedure p1() BEGIN select * from t 阅读全文

posted @ 2020-01-13 17:28 屾哥 阅读(128) 评论(0) 推荐(0)

导航