[VIEWED 7572
TIMES]
|
SAVE! for ease of future access.
|
|
|
Ghiraunla
Please log in to subscribe to Ghiraunla's postings.
Posted on 05-02-17 6:01
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Hi SQL Gurus, I need to join two tables say Table I and Table W Table I is like below Numbers Values 1 A 1 B 2 C 3 D Table W is Like Below Numbers Boolean 1 Yes 1 Yes 2 Yes 3 Yes I need to query to join Table I and W where Boolean value is Yes in Table W but there is no D in Table I in Oracle database. The answer would be Number 1 2 Can someone help me get a query?
|
|
|
|
pidiiit
Please log in to subscribe to pidiiit's postings.
Posted on 05-02-17 7:45
AM [Snapshot: 61]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Hey, your requirement is confusing. What does it mean by "where Boolean value is Yes in Table W but there is no D in Table I in Oracle database"
|
|
|
panacea
Please log in to subscribe to panacea's postings.
Posted on 05-02-17 7:45
AM [Snapshot: 57]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
If there is no value D in table I then when you join both the tables on numbers, you will automatically get the those two numbers as you distinct them. Not sure, what your question is actually?
|
|
|
KaliKoPoi
Please log in to subscribe to KaliKoPoi's postings.
Posted on 05-02-17 8:41
AM [Snapshot: 108]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
First join like this: select i.Numbers as Number from I i join W w on i.Numbers = w.Numbers Then use filter to get the record you need: where w.Boolean="Yes" and i.Values != 'D' Actual query depends on database you are using.
|
|
|
jaxnepali
Please log in to subscribe to jaxnepali's postings.
Posted on 05-02-17 9:29
AM [Snapshot: 142]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
try this..very generic select * from i where values <> 'D' and numbers in (select numbers from w where boolean = 'Y') - Jaxnepali
Last edited: 02-May-17 09:29 AM
|
|
|
c864916
Please log in to subscribe to c864916's postings.
Posted on 05-02-17 12:11
PM [Snapshot: 237]
Reply
[Subscribe]
|
Login in to Rate this Post:
1
?
Liked by
|
|
There is an online application for testing and sharing SQL queries called SQLFiddle.com. Here's a quick fiddle I created for you. http://sqlfiddle.com/#!9/393cc/4
|
|
|
ikauda
Please log in to subscribe to ikauda's postings.
Posted on 05-02-17 12:34
PM [Snapshot: 250]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
are you interested in basic to advance level SQL training please contact hr@ikauda.com ----- New QA training session starting this wednesday( 05/02/2017)
|
|
|
daniachhetri_geekIt
Please log in to subscribe to daniachhetri_geekIt's postings.
Posted on 05-02-17 12:49
PM [Snapshot: 274]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
ikauda, How much do you charge for your trainings? Thank you, Dania Dania Chhetri Senior Resource Manager Geek IT Solution LLC Email: dania@geekitsolution.com Direct: 972-358-3131 Linkedin: Dania Chhetri Google Hangout: geekitsolution.midwest@gmail.com Note: If you were unable to reach me please contact our President, Santosh Bhattarai at santosh@geekitsolution.com or you may call him at: 913-515-5346. He can also be reached on hangouts at: geekit.kansas@gmail.com
|
|
|
ikauda
Please log in to subscribe to ikauda's postings.
Posted on 05-02-17 1:29
PM [Snapshot: 303]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
zero cost....... thousands to benefit ( to candidates)...... Last edited: 02-May-17 01:29 PM
Last edited: 02-May-17 01:31 PM
|
|
|