如何为同一字段的pdo准备的语句具有多个选项?

时间:2019-04-02 18:15:28

标签: php mysql pdo prepared-statement

我需要查询数据库中where子句中同一字段的多个选项。

示例:

select * from table where (name='john' or name='phil' or name='ann')

对于一个选择,我会写:

select * from table where name='john'

您会如何选择多个选项? (name ='john'或name ='phil'或name ='ann')

0 个答案:

没有答案