使用 WHERE 子句将数组传递给 MySQL 中的查询?
我们可以借助 where IN 子句传递数组。我们先为示例创建一个新表。
mysql> create table PassingAnArrayDemo -> ( -> id int, -> Firstname varchar(100) -> ); Query OK, 0 rows affected (1.60 sec)
接下来,我们插入记录。
mysql> insert into PassingAnArrayDemo values(1,'John'),(2,'Carol'),(3,'Smith'),(4,'Bob'),(5,'Johnson'),(6,'David'),(7,'Sam'),(8,'Jessica'); Query OK, 8 rows affected (0.32 sec) Records: 8 Duplicates: 0 Warnings: 0
要显示所有记录。
mysql> select *from PassingAnArrayDemo;
以下是输出结果。
+------+-----------+ | id | Firstname | +------+-----------+ | 1 | John | | 2 | Carol | | 3 | Smith | | 4 | Bob | | 5 | Johnson | | 6 | David | | 7 | Sam | | 8 | Jessica | +------+-----------+ 8 rows in set (0.00 sec)
以下是借助 where IN 子句发送数组参数的语法。
mysql> SELECT * -> FROM PassingAnArrayDemo where id IN(1,3,6);
以下是输出结果。
+------+-----------+ | id | Firstname | +------+-----------+ | 1 | John | | 3 | Smith | | 6 | David | +------+-----------+ 3 rows in set (0.04 sec)
广告