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
 
 
À
22/02/2012 01:42:20
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:
01536072
Vues:
24
Can you clarify your requirements again and which DB you want them? I don't know what this recursive CTE was supposed to do.


>yes , i use VFP ....
>
>if i change to 2005 SQL Server and use CTE.
>it display error...
>Msg 530, Level 16, State 1, Line 1
>The statement terminated. The maximum recursion 100 has been exhausted before statement completion.
>
>How can i do, thank you ~~~
>
>
>WITH Tests(tid, tname, counts) AS
>(
> SELECT sysid, sysName, 0 AS counts
> FROM syslib
> UNION ALL
> SELECT sysid, sysName, counts + 1
> FROM syslib I
> JOIN Tests T ON 
> T.tid = I.sysid
>)
>SELECT sysid, sysName, T.counts
> FROM syslib I
> JOIN Tests T ON 
> T.tid = I.sysid
>
>
If it's not broken, fix it until it is.


My Blog
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform