- or download this
CREATE TABLE friends (Nickname VARCHAR(40), Name (First VARCHAR(20), L
+ast Varchar(20))
- or download this
SELECT * FROM friends WHERE Name=('John', 'Smith')
- or download this
SELECT * FROM friends WHERE Name.First='John'
- or download this
SELECT Nickname FROM friends WHERE Name.First='John'