Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Sql problem, how can i return record row no in table all
Message
De
21/02/2012 04:10:11
 
 
À
21/02/2012 03:43:14
Information générale
Forum:
ASP.NET
Catégorie:
Bases de données
Versions des environnements
Environment:
VB 9.0
OS:
Windows XP
Database:
Visual FoxPro
Application:
Desktop
Divers
Thread ID:
01535912
Message ID:
01535920
Vues:
32
>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.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform