74

He's making a list
He's testing it twice
SELECT * FROM users WHERE behavior="nice"
SQL-clause is coming
To town.

Credit to @leeflower on Twitter

Comments
  • 5
    SELECT Name,Address,TimeZone,DesiredPresents,CookieType
    FROM users
    inner join Cookies on Cookies.username = users.name and Cookies.useraddress = users.address and Cookies.year = 2015
    WHERE behavior="nice" and Cookies.brand not in ('Sams Choice','Great Value')

    Selecting * is way too much information who knows what it'll return.
  • 1
    Killed me 😂😂😂
Add Comment