摘要: 对数据库进行备份处理时不用进行登录 mysqldump -u root -p test >c:/test.sql enter password : root 这样就可以对数据库 test进行备份 到c盘的test,sql 文件里 root 是数据库用户名 也是密码 如何对数据进行回复 MySQL - 阅读全文
posted @ 2018-10-06 22:31 秦明科 阅读(839) 评论(0) 推荐(0) 编辑
摘要: mysql数据库权限问题:root:拥有所以权限(可以干任何事情) 权限账户,只拥有部分权限(curd)例如只能操作某个数据库的某张表 如何修改mysql的用户密码? password:md5加密函数(单向加密) select password('root'); 这是一个单向的 md5加密函数 我们 阅读全文
posted @ 2018-10-06 22:07 秦明科 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 触发器类似于一个监听器的作用。 create trigger triempAdd after update on employee row insert into test_log(content)values('员工表修改了一条记录') 修改 create trigger triempAdd af 阅读全文
posted @ 2018-10-06 01:16 秦明科 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 需求:输入一整数求和。例如,输入100 统计1-100的和 阅读全文
posted @ 2018-10-06 00:44 秦明科 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 需求: 输入1则返回星期一,输入2则返回星期二,输入3则返回星期三,输入其他则返回输 我们试着来输入一下数据 阅读全文
posted @ 2018-10-06 00:23 秦明科 阅读(1443) 评论(0) 推荐(0) 编辑