
mysql
一种时光
人生如戏,游戏的戏!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
java 入门 到的坑org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
检查路 mapper径名 和 配置文件的名字是否相同。原创 2022-12-08 17:17:37 · 152 阅读 · 0 评论 -
JAVA入门大坑:expected at least 1 bean which qualifies as autowire candidate. Dependency annotations
Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'helloWord': Unsatisfied dependency expressed through field 'testMapper': Erro原创 2022-12-07 10:56:33 · 7681 阅读 · 0 评论 -
通过cmd 修改 mysql的密码
方法一:mysql> set password for 用户名@localhost = password('新密码'); 方法二:mysqladmin -u用户名 -p旧密码 password 新密码 方法三: update user set password=password('123') where user='root' ;方法四:update user set authe...原创 2019-01-21 15:42:25 · 735 阅读 · 1 评论 -
mysql 触发器
语法: DELIMITER $ //更换结束符 CREATE TRIGGER 触发器名 BEFORE|AFTER 触发事件 ON 表名 FOR EACH ROW BEGIN 执行语句列表 END DELIMITER ;Insert 触发语句: Insert,Load Data,ReplaceUpData 触发语句: UpDat...原创 2019-07-24 10:24:08 · 110 阅读 · 0 评论