随笔分类 - SQL
摘要:SpringBoot 配置文件正确配置 application.properties 和logback配置文件无关 # JPA Hibernate SQL debug logging.level.org.hibernate.SQL=DEBUG # Logs the JDBC parameters p
阅读全文
摘要:官方Mysql手册链接 "https://dev.mysql.com/doc/connectors/en/connector j reference charsets.html" 文档说的很清楚 提示 mysql connector java 版本在8.0.12之前的,包括8.0.12,服务端必须设
阅读全文
摘要:01.查询员工表所有数据,并说明使用*的缺点 select * from emp 02.查询职位(JOB)为'PRESIDENT'的员工的工资 select sal from emp where job='PRESIDENT' 03.查询佣金(COMM)为0或为NULL的员工信息 select *
阅读全文
摘要: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
阅读全文