SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

[Note]  JS: Scroll events

[Note] JS: Scroll events

Graph  [1] 七橋問題

Graph [1] 七橋問題

【JS學習筆記】認識 for...in 與他的兄弟 for...of

【JS學習筆記】認識 for...in 與他的兄弟 for...of






留言討論