Hi,
I'm new to sqlserver.
The following query using in oracle db. I would like to convert the query according to SQL Server2000 DB. Any help would be appreciated.
Query :
--------
SELECT DISTINCT a.nmi,
(SELECT COUNT (*) FROM tbill, tbilldate
WHERE tbill.dt_bill(+) =...
Hi,
select * from tableA a where
1 >= (select count(distinct edate) from tableA b
where b.no_property = a.no_property
and b.company = a.company
and b.edate > a.edate
)
The above query table have around 10million rows. I need to get info of last 2 max edate for...
Hi,
We are having around 2000 XML files, which contains full of valid information. We want to extract the data from XML file to Excel sheet or store into Access database.
Your suggesstions would be appreciated.
Thanks,
Raj
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.