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


Sep 03, 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






你可能感興趣的文章

資訊安全:SQL Injection & CSRF

資訊安全:SQL Injection & CSRF

單元測試的藝術 - 測試你的程式

單元測試的藝術 - 測試你的程式

滲透測試重新打底(2.2)--論Enumeration(枚舉)之SMTP

滲透測試重新打底(2.2)--論Enumeration(枚舉)之SMTP






留言討論