Microsoft
Software
Hardware
Network
Question : Oracle query
can anyone advise on following sql-
TABLE A HAS COL- ID,code,acno
How can i retreive records which have more than one unique value of (code,acno) base on ID
Example-
id code acno
1 A 3
1 A 3
2 A 3
2 b 3
Result expected is-
2 b 3
2 A 3
Answer : Oracle query
select id,code,acno from
(select id,code,acno,count(*) over(partition by id,code,acno) cntcombo,count(*) over (partition by id) cntid from tablea)
where cntcombo != cntid;
Random Solutions
accessing a web service
I can send e-mail ok but cannot get to Internet via browser
Control object destruction during global destruction
how can i find all ILO boards on a network
How can I convert a custom control that calls User32 and Shell32 to work on Mono?
Java web service accesing error
Filling a TextBox on a Form with Data from a Field from an SQL Database Table in Visual Studio 2008
Convert Doc files to Docx in SharePoint
To change asni_padding setting of a column.
Sharepoint Webpart page load event issue