sql - oracle query returns 4 duplicates of each row -
I'm running an Oracle query. Besides working, it seems that it gives 4 duplicates of each result. Query:
Does anybody know why it is not working properly?
You have a cross here:
SELECT NEW_USER * , NEW_EHS_QUIZ_COMPLETE.DATetime to NEW_USER, NEW_EHS_QUIZ_COMPLETE where exists (* NEW_EHS_QUIZ_COMPLETE Select * NEW_USER.id = NEW_EHS_QUIZ_COMPLETE.USER_ID)
You probably mean this:
Select NEW_USER. *, NEW_USER.id = N EW_EHS_QUIZ_COMPLETE.USER_ID
Comments
Post a Comment