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






你可能感興趣的文章

[MTR04] W1 D1 CLI 指令

[MTR04] W1 D1 CLI 指令

用React框架重構PHP網頁心得

用React框架重構PHP網頁心得

5. 頻譜分析

5. 頻譜分析






留言討論