Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to do inside quotes
Message
De
10/09/2013 20:21:08
 
 
À
10/09/2013 19:24:26
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Versions des environnements
SQL Server:
SQL Server 6.5 and older
Application:
Web
Divers
Thread ID:
01582787
Message ID:
01582801
Vues:
52
J'aime (1)
;with cte as (
SELECT * 
FROM (
SELECT sponsor, fundtype, amount
from TIP_ApprovedFunding f
inner join TIP_Projects p on p.TipID = f.TipID
where p.ApprovedStatus = 'Active' 
)
OK, if this is the declaration of the CTE, you're missing a right parenthesis... Try this instead???
;with cte as (
SELECT sponsor, fundtype, amount
from TIP_ApprovedFunding f
inner join TIP_Projects p on p.TipID = f.TipID
where p.ApprovedStatus = 'Active' 
)
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform