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


Jan 26, 2022
/** 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






你可能感興趣的文章

OOP - 7 關於封裝

OOP - 7 關於封裝

作業 14 週、筆記

作業 14 週、筆記

[心得] 滑鼠們

[心得] 滑鼠們






留言討論






2
2
2