Voici la syntaxe à insérer dans une table à partir d'un CTE :
-- CREATE TABLE tmp ( tmp_id NUMBER(10) );
INSERT INTO tmp( tmp_id )
WITH cte AS (
SELECT 1 AS tmp_id FROM dual
)
SELECT tmp_id
FROM cte;
Voici la syntaxe à insérer dans une table à partir d'un CTE :
-- CREATE TABLE tmp ( tmp_id NUMBER(10) );
INSERT INTO tmp( tmp_id )
WITH cte AS (
SELECT 1 AS tmp_id FROM dual
)
SELECT tmp_id
FROM cte;
Implémentation de la gestion des erreurs et des transactions dans SQL Server
Ensemble de problèmes 2 – Identification des entités et des attributs
Comment utiliser Top with Ties dans SQL Server - Tutoriel SQL Server / TSQL Partie 114
Intégration de ServiceNow avec Oracle Identity Cloud Service (IDCS)