ALLInterview.com
Categories
|
Companies
|
Placement Papers
|
Code Snippets
|
Certifications
|
Visa Questions
Post Questions
|
Post Answers
|
My Panel
|
Search
|
Topics
|
Errors
ramana
{ City }
< Country > india
* Profession *
User No #
37227
Total Questions Posted #
0
Total Answers Posted #
1
Total Answers Posted for My Questions # 0
Total Views for My Questions # 0
Users Marked my Answers as Correct # 8
Users Marked my Answers as Wrong # 0
Questions / { ramana }
Questions
Answers
Category
Views
Company
eMail
Answers / { ramana }
Question
{
RBS
,
14232 }
Q3. How will you fetch duplicate values from a DB2 table?
Answer
select City, Country, count('X') from Customers
group by City, Country
HAVING count('X') > 1
;
Is This Answer Correct ?
8 Yes
0 No