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






你可能感興趣的文章

ASP.NET Core Web API 入門教學 - 開發環境安裝

ASP.NET Core Web API 入門教學 - 開發環境安裝

Day4 真不想承認啊,因為自己太過年輕所犯下的錯誤

Day4 真不想承認啊,因為自己太過年輕所犯下的錯誤

Return the summation of the number smaller than n

Return the summation of the number smaller than n






留言討論






2
2
2