10 lines
137 B
MySQL
10 lines
137 B
MySQL
|
-- This is a comment we are going to ignore...
|
||
|
SELECT
|
||
|
username,
|
||
|
age,
|
||
|
email
|
||
|
FROM
|
||
|
users
|
||
|
WHERE
|
||
|
email = 'john.olheiser@gmail.com';
|