📜  选择具有多个值的行 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:09.193000             🧑  作者: Mango

代码示例1
-- Retrieve all rows from table
SELECT * FROM adventurers
    -- Where the race is Elf
    WHERE race = 'Elf'
    -- weapon is sword
    AND weapon = 'Sword'