摘要: 创建用户 create user 'username'@'host' identified by 'password' [WITH] [DBA | RESOURCE | CONNECT]; 其中, ‘username’:需要创建的用户名 ‘host’:指定该用户可以在那台主机上登录 ‘passwor 阅读全文
posted @ 2021-06-28 21:44 Veritas_des_Liberty 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 存储过程,又称存储程序(英语:Stored Procedure),是在数据库存储复杂程序,以便外部程序调用的数据库对象,可以视为数据库的一种函数或子程序。 优点: 存储过程可封装,并隐藏复杂的商业逻辑 存储过程可以回传值,并可以接受参数 存储过程无法使用SELECT指令运行,因为它是子程序,与查看表 阅读全文
posted @ 2021-06-28 17:21 Veritas_des_Liberty 阅读(441) 评论(0) 推荐(0) 编辑
摘要: 嵌入式编程 PyMySQL 是一个纯 Python 实现的 MySQL 客户端操作库,支持事务、存储过程、批量执行等。 建立数据库连接 db = pymysql.connect(host = 'localhost', user = 'root', password = '', db = 'test' 阅读全文
posted @ 2021-06-28 09:51 Veritas_des_Liberty 阅读(129) 评论(0) 推荐(0) 编辑