随笔分类 -  SQL

摘要:SpringBoot 配置文件正确配置 application.properties 和logback配置文件无关 # JPA Hibernate SQL debug logging.level.org.hibernate.SQL=DEBUG # Logs the JDBC parameters p 阅读全文
posted @ 2022-06-16 17:44 一杯半盏 阅读(2203) 评论(0) 推荐(0) 编辑
摘要:官方Mysql手册链接 "https://dev.mysql.com/doc/connectors/en/connector j reference charsets.html" 文档说的很清楚 提示 mysql connector java 版本在8.0.12之前的,包括8.0.12,服务端必须设 阅读全文
posted @ 2018-12-13 21:06 一杯半盏 阅读(3819) 评论(0) 推荐(0) 编辑
摘要:01.查询员工表所有数据,并说明使用*的缺点 select * from emp 02.查询职位(JOB)为'PRESIDENT'的员工的工资 select sal from emp where job='PRESIDENT' 03.查询佣金(COMM)为0或为NULL的员工信息 select * 阅读全文
posted @ 2015-09-26 17:39 一杯半盏 阅读(497) 评论(0) 推荐(0) 编辑
摘要:select sname from student where not exists (select * from course where not exists (select * from sc where sno =student.sno and cno=course.cno); 最内部的 s 阅读全文
posted @ 2014-06-12 23:27 一杯半盏 阅读(1676) 评论(0) 推荐(0) 编辑