Tagged Questions
0
votes
1answer
41 views
Adding restriction to a SQL Server stored procedure script
How I can add to these 2 scripts below a restriction, so it wont allow creating a hero with less than 3 characters in its name or when changing the name of the hero it wont allow less than 3 ...
1
vote
2answers
39 views
Data Driven Restrictions of Plan Selections
I have a complex data structure I am working with and I am not quite sure how to tackle it in a single SQL query, although my gut tells me this should be possible to do.
The essence of what I am ...
1
vote
1answer
57 views
How to create condition for a field in SQL
How can i restrict the value entered for a field in SQL
Appointment ( Appointment_ID, Appointment_Date, Appointment_Time )
I have to restrict the value entering should be
Appointment_Date (Monday ...
2
votes
2answers
489 views
Convert a SQL query to a Hibernate Criteria expression
I'm having trouble converting this expression to a Criteria expression:
SELECT profile_profiles.profile_sup_id
FROM profil
INNER JOIN profile_profiles ON profile_profiles.profile_id = profil.id
...
0
votes
1answer
45 views
How to prevent a user from leaving comment to another user
Suppose I have a site where users can leave each other comments.
we have user A, user B and user C.
also, support user B has blocked user C.
user A leaves user B a comment, code is as follows:
...
0
votes
1answer
526 views
Hibernate Restrictions: Object betweeen two DB.table.propertyName
This is the normal use of Hibernate's between constraint
Criterion critDate = Restrictions.between("fromDatePropName", model.getFromDate(), model.getToDate()) ;
But I want the constraint between ...
2
votes
3answers
272 views
PostgreSQL column values must be in a sequence
How would I define a column in PostgreSQL such that each value must be in a sequence, not the sequence you get when using type serial but one such that a value 2 cannot be inserted unless there exists ...