Want to ask how to add restriction for filtering result by Integer id column
I need something like
Restriction.like("id", myFilterValue)
// id is Integer primary key
Want to ask how to add restriction for filtering result by Integer id column
I need something like
Restriction.like("id", myFilterValue)
// id is Integer primary key
Copyright © 2021 Jogjafile Inc.
If you want to retrieve an object by its primary key in Hibernate, you can use
Session.get()
:Otherwise, if you want to add an equality restriction using Criteria:
I suppose if what you really want is to find any rows where the decimal digits of the numeric column contain a certain substring of digits, then you would have to CAST the column to a
VARCHAR
(the syntax of which may vary between databases, and you didn't specify which one you are using) and then you would be able to use something likeWHERE CAST(id AS VARCHAR) LIKE '%12%'
. But if you are doing this, you may need to reconsider what you are trying to accomplish at a much higher level, as this would lead me to believe that there may be a problem with the basic design of your system.