hibernate,一对多,这种hql语句怎么写
一对多关系,实际上就是主外键现在有a表(一),b表(多)b表里有数据,外键字段是null现在要在a表增加数据,并且和b表现有数据建立关系(也就是说b表外键要更改成a表新数...
一对多关系,实际上就是主外键
现在有a表(一),b表(多)
b表里有数据,外键字段是null
现在要在a表增加数据,并且和b表现有数据建立关系(也就是说b表外键要更改成a表新数据的主键)
完成这个要求,要写几个hql语句啊,怎么写? 展开
现在有a表(一),b表(多)
b表里有数据,外键字段是null
现在要在a表增加数据,并且和b表现有数据建立关系(也就是说b表外键要更改成a表新数据的主键)
完成这个要求,要写几个hql语句啊,怎么写? 展开
展开全部
select * from table
where rownum<(select count(*)+1 from table)
minus
select * from table
where rownum<(select count(*) from table)
也可以简化为
select * from table
minus
select * from table
where rownum<(select count(*) from table)
效果是一样的
切记rownum是伪列 只能用<
顺便给你求第X行的通用SQL语句
select * from table where rownum<X+1
minus
select * from table where rownum<X
where rownum<(select count(*)+1 from table)
minus
select * from table
where rownum<(select count(*) from table)
也可以简化为
select * from table
minus
select * from table
where rownum<(select count(*) from table)
效果是一样的
切记rownum是伪列 只能用<
顺便给你求第X行的通用SQL语句
select * from table where rownum<X+1
minus
select * from table where rownum<X
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询