随笔分类 -  Mysql

摘要:<!-- 插入数据:返回记录主键id值 --> <insert id="insert" useGeneratedKeys="true" keyProperty="id" keyColumn="id"> insert into stu (name,age) values (#{name},#{age} 阅读全文
posted @ 2020-04-26 11:53 ThisCall 阅读(6528) 评论(0) 推荐(0) 编辑
摘要:MySQL的DATE_FORMAT()用法 https://www.cnblogs.com/diandianquanquan/p/10606955.html 阅读全文
posted @ 2020-03-26 10:51 ThisCall 阅读(500) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/Soprano/p/10659101.html https://www.jianshu.com/p/c9b95e35999e https://www.cnblogs.com/sugartang/p/10967435.html 1子查询 先查询 tb_c 阅读全文
posted @ 2020-03-05 14:33 ThisCall 阅读(186) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/mofujin/p/11355517.html 表 CREATE TABLE `tb_content` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `category_id` bigint(20) NOT NU 阅读全文
posted @ 2020-03-05 11:10 ThisCall 阅读(270) 评论(0) 推荐(0) 编辑
摘要:查询左表a,并且关联a表在b表中的关联,如果关联不存在也可以查出左表的,注:只查询a的部分列,和b的部分列 SELECT a.id, b.id as my FROM a LEFT JOIN b ON a.category_id=b.id 查询左表a,并且关联a表在b表中的关联,如果关联不存在也可以查 阅读全文
posted @ 2020-03-02 10:30 ThisCall 阅读(162) 评论(0) 推荐(0) 编辑
摘要:set password for 'username'@'host' = password('123456')或mysql> set password for root@localhost = password('123456'); mysql -u root -p123456 阅读全文
posted @ 2020-02-25 20:52 ThisCall 阅读(165) 评论(0) 推荐(0) 编辑
摘要:在DOS窗口、gitbush以及一些可以使用的命令行工具的界面上,输入:net stop mysql、net start mysql时,总是提示:服务名无效。 出现提示如下: 原因是:因为net start +服务名,启动的是win下注册的服务。此时,系统中并没有注册mysql到服务中。即当前路径下 阅读全文
posted @ 2020-02-25 20:32 ThisCall 阅读(5630) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/Song_JiangTao/article/details/82192189 阅读全文
posted @ 2019-11-24 19:54 ThisCall 阅读(183) 评论(0) 推荐(0) 编辑
摘要:alter table 表明 AUTO_INCREMENT=1 阅读全文
posted @ 2019-08-20 19:26 ThisCall 阅读(117) 评论(0) 推荐(0) 编辑
摘要:不为null和不为“”的才会加入到sql语句中 阅读全文
posted @ 2019-08-10 07:38 ThisCall 阅读(389) 评论(0) 推荐(0) 编辑
摘要:Mapper.xml中 pid = #{pid,jdbcType=INTEGER} pid = #{pid} 都可以用 Mybatis中什么时候应该声明jdbcType? 当Mybatis不能自动识别你传入对象的类型时。 什么情况下,Mybatis不能自动识别我的传入类型? 例如:当你传入空值的时候 阅读全文
posted @ 2019-08-09 11:52 ThisCall 阅读(8740) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/yanggb/p/10849245.html 阅读全文
posted @ 2019-08-09 09:42 ThisCall 阅读(428) 评论(0) 推荐(0) 编辑
摘要:INNER和OUTER可以省略 阅读全文
posted @ 2019-08-09 06:52 ThisCall 阅读(208) 评论(0) 推荐(0) 编辑
摘要:编写顺序 S..F..W..G..H..O 执行顺序 F..W..G..H..S..O from →join →on →where →group by→having→select→order by→limit 阅读全文
posted @ 2019-08-09 06:27 ThisCall 阅读(336) 评论(0) 推荐(0) 编辑
摘要:int分为unsigned(无正负号)和signed(有正负号) 一般int默认为signed unsigned和unsigned int意思相同 阅读全文
posted @ 2019-08-08 20:38 ThisCall 阅读(259) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/liujianjun8181/p/10319302.html https://www.cnblogs.com/bypp/p/8618382.html 阅读全文
posted @ 2019-08-05 15:39 ThisCall 阅读(155) 评论(0) 推荐(0) 编辑
摘要:主键索引(必须指定为“PRIMARY KEY”,没有PRIMARY Index)、 唯一索引(unique index,一般写成unique key)、 普通索引(index,只有这一种才是纯粹的index)等,也是基于是不是把index看作了key。 sql插入索引语句: 普通索引:ALTER T 阅读全文
posted @ 2019-08-03 21:06 ThisCall 阅读(215) 评论(0) 推荐(0) 编辑
摘要:https://www.runoob.com/sql/sql-join-left.html https://www.cnblogs.com/bad-robot/p/9788959.html https://www.jianshu.com/p/11a048d5ea4f https://www.w3sc 阅读全文
posted @ 2019-08-01 13:50 ThisCall 阅读(130) 评论(0) 推荐(0) 编辑
摘要:双击点亮数据库 导入数据库 点击开始 阅读全文
posted @ 2019-07-13 16:09 ThisCall 阅读(828) 评论(0) 推荐(0) 编辑
摘要:卸载从新安装,综合运用 https://www.jb51.net/article/146050.htm https://www.jb51.net/article/90275.htm https://www.jb51.net/article/90209.htm 找初始密码的文件会变的,在文件中收索pa 阅读全文
posted @ 2019-06-21 22:55 ThisCall 阅读(143) 评论(0) 推荐(0) 编辑