Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Sql problem, how can i return record row no in table all
Message
From
21/02/2012 04:10:11
 
 
To
21/02/2012 03:43:14
General information
Forum:
ASP.NET
Category:
Databases
Environment versions
Environment:
VB 9.0
OS:
Windows XP
Database:
Visual FoxPro
Application:
Desktop
Miscellaneous
Thread ID:
01535912
Message ID:
01535920
Views:
37
>Thank you for your reply me... but in my case i don't know CTE , how can do it ?
Hi,
You need something like this:
WITH Tests(tid, tname, counts) AS
(
SELECT id, Name, 0 AS counts
FROM Iden
UNION ALL
SELECT id, Name, counts + 1
FROM Iden I
JOIN Tests T ON
T.tid = I.id
)
SELECT id, Name, T.counts
FROM Iden I
JOIN Tests T ON
T.tid = I.id

Check this link:
http://msdn.microsoft.com/en-us/library/ms186243.aspx
Help others is first think you must do.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform