Click here to Skip to main content
15,900,258 members
Home / Discussions / Database
   

Database

 
AnswerRe: Finding status of which Jobs ran successfully and which are failed on daily basis Pin
Afzaal Ahmad Zeeshan2-Mar-17 9:09
professionalAfzaal Ahmad Zeeshan2-Mar-17 9:09 
QuestionHow to sync two or more collocation database server? Pin
Gilbert Consellado1-Mar-17 17:59
professionalGilbert Consellado1-Mar-17 17:59 
AnswerRe: How to sync two or more collocation database server? Pin
Eddy Vluggen6-Mar-17 2:56
professionalEddy Vluggen6-Mar-17 2:56 
GeneralRe: How to sync two or more collocation database server? Pin
Gilbert Consellado7-Mar-17 1:58
professionalGilbert Consellado7-Mar-17 1:58 
QuestionFoxpro DBF, Joining a table with multiple columns that can return more than 1 record and projecting it into a list(Of Pin
jkirkerx27-Feb-17 8:07
professionaljkirkerx27-Feb-17 8:07 
Questionintegration of flash to javadb Pin
Member 1302448026-Feb-17 19:38
Member 1302448026-Feb-17 19:38 
AnswerRe: integration of flash to javadb Pin
Mycroft Holmes26-Feb-17 21:53
professionalMycroft Holmes26-Feb-17 21:53 
GeneralRe: integration of flash to javadb Pin
Richard Deeming26-Feb-17 23:43
mveRichard Deeming26-Feb-17 23:43 
QuestionGetting data Pin
Member 1302296325-Feb-17 0:23
Member 1302296325-Feb-17 0:23 
AnswerRe: Getting data Pin
Richard MacCutchan25-Feb-17 20:48
mveRichard MacCutchan25-Feb-17 20:48 
Questionc# to call MySQL Update Stored Proc error Pin
jonmy24-Feb-17 0:00
jonmy24-Feb-17 0:00 
AnswerRe: c# to call MySQL Update Stored Proc error Pin
Richard Deeming24-Feb-17 0:26
mveRichard Deeming24-Feb-17 0:26 
GeneralRe: c# to call MySQL Update Stored Proc error Pin
jonmy24-Feb-17 0:37
jonmy24-Feb-17 0:37 
QuestionSave a Query as a View issue Pin
john_berman21-Feb-17 11:35
john_berman21-Feb-17 11:35 
AnswerRe: Save a Query as a View issue Pin
Richard Deeming21-Feb-17 12:04
mveRichard Deeming21-Feb-17 12:04 
QuestionTime Variance Query works - Sorry it needs a tweak Pin
john_berman21-Feb-17 9:48
john_berman21-Feb-17 9:48 
QuestionMySql Resource Pin
BobbyStrain20-Feb-17 14:12
BobbyStrain20-Feb-17 14:12 
AnswerRe: MySql Resource Pin
Peter Leow20-Feb-17 16:08
professionalPeter Leow20-Feb-17 16:08 
QuestionTricky Query that includes a time difference Pin
john_berman20-Feb-17 6:09
john_berman20-Feb-17 6:09 
AnswerRe: Tricky Query that includes a time difference Pin
Richard MacCutchan20-Feb-17 6:22
mveRichard MacCutchan20-Feb-17 6:22 
GeneralRe: Tricky Query that includes a time difference Pin
john_berman20-Feb-17 6:45
john_berman20-Feb-17 6:45 
GeneralRe: Tricky Query that includes a time difference Pin
Richard Deeming20-Feb-17 6:52
mveRichard Deeming20-Feb-17 6:52 
Looks like you're missing:
SQL
AND a.event_id != b.event_id
from your WHERE clause.

(You might want to change that to an ON clause for the JOIN.)

If you want to exclude matches from the same user, you'll also need:
SQL
AND a.user_ID != b.user_ID

Or, to exclude matches for different users:
SQL
AND a.user_ID = b.user_ID




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: Tricky Query that includes a time difference Pin
john_berman20-Feb-17 7:04
john_berman20-Feb-17 7:04 
GeneralRe: Tricky Query that includes a time difference Pin
john_berman20-Feb-17 7:06
john_berman20-Feb-17 7:06 
QuestionDatabase Design - Help Appreciated Pin
john_berman19-Feb-17 21:03
john_berman19-Feb-17 21:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.