Communiquez avec les autres et partagez vos connaissances professionnelles

Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.

Suivre

How would you write a single SQL statement to get the output as: Col1 val x 1 y 2 z 3 (Note; Hardcoding not allowed.)

user-image
Question ajoutée par mirza habeeb , Application Support & Database Developer , Via Technology
Date de publication: 2015/03/30
Biju Jose
par Biju Jose , Analyst Programmer , AgilityCIS

WITH cte(col1)      AS (SELECT 'x'          UNION          SELECT 'y'          UNION          SELECT 'z') SELECT col1,        Row_number()          OVER(            ORDER BY col1) AS val FROM   cte 

 

HTH

More Questions Like This