I'm facing a strange probleme with my Oracle SQL Query, my query looks like :
select *
from user e
where e.year= 2014 and e.user =305 and e.usercat =22 and e.datereg= '25/07/2014'
When a select the whole content, I can find this specific user, but once I add the column datereg to the query, it doesn't give me any result (0 row)!!
I have a problem with the value of the datereg column only for this user, and no probleme with other users (when i change the datereg value).
Any idea please ?