python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
snowflake returning uppercase fields resultset that causes issues jpql mapping jpa/hibernate
I have a project to do integration with snowflake database using ORM like JPA/Hibernate
but for the resultset from snowflakes always returns fields in UPPERCASE which conflicts with JPQL default behev...
mark ortiz
Votes: 0
Answers: 1
Fetch count(distinct value) along with other columns in spring boot application
I am stuck while fetching the count(distinct) values from the databse using JPQL queries. Please refer below query
I have got below table
111111 User_A Dell Inspiron15 in10
1...
Devops_Dev
Votes: 0
Answers: 2
JPQL SELECT where more than one n:m per left-table entry exists
I did an JPA n:m structure where books(id, name) and authors(id, lastname) has a n:m Relation with a self-made table (bookAuthors) inbetween which has (book.id, authors.id) as combined pk.
Now I want ...
SUT
Votes: 0
Answers: 1
OVER PARTITION BY sql statement with java EntityManager?
i have a SQL-core statement like this..
select * from
(select isin, row_number() over (partition by isin order by update_date
desc) as ROW_NUMBER
from stock_job_report where insurer = '...
electrode
Votes: 0
Answers: 1