quan的知识库

导航

2022年7月22日 #

如何一条SQL实现两表查询并排序

摘要: 前提是table1和table2字段查出来的字段必须一样 select c.id,c.name,c.age from (select a.id,a.name,a.age from table1 union select b.id,b.name,18 as age from table2 b) c o 阅读全文

posted @ 2022-07-22 15:36 quan的知识库 阅读(746) 评论(0) 推荐(0) 编辑

如何将table1中的数据复制到table2中

摘要: 1、当table1和table2的字段完全相同时 字段数很多,懒得全列出来时: SQL:inster into table2 select * from table1; 字段数很少 SQL: inster into table2(id,name) select a.id,a.name from ta 阅读全文

posted @ 2022-07-22 15:28 quan的知识库 阅读(185) 评论(0) 推荐(0) 编辑

hibernate框架中直接执行SQL

摘要: 问题描述:hql不能使用*,不能子查询,也不能用join on 等关键字,如何在hibernate框架中直接执行SQL? 解决方法(标红处):StringBuffer sql = new StringBuffer();Date now = new Date();SimpleDateFormat da 阅读全文

posted @ 2022-07-22 14:51 quan的知识库 阅读(433) 评论(0) 推荐(0) 编辑

java.math.BigDecimal cannot be cast to java.lang.Integer问题

摘要: 问题描述:利用sql语句从数据库里面取出数据后,对取出的数据进行数据转换时,出现了java.math.BigDecimal cannot be cast to java.lang.Integer错误,原因是BigDecimal不能直接转换为Integer类型 解决方法: 将取出的数据转换为Integ 阅读全文

posted @ 2022-07-22 14:31 quan的知识库 阅读(94) 评论(0) 推荐(0) 编辑