Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一系列日期。对于每个日期,我想将它插入到查询的 where 子句中,然后将结果值(某物的计数)存储到一个新表中。
这个类似的问题在 php 中提供了答案,但我需要在 mysql 中严格执行此操作。在此先感谢您的帮助。
编辑:通过数组,我只是指一个事物列表。例如,具有一行日期值的表。谢谢。
迭代数组并构建你的 where 子句?
就像是:
$where = "WHERE"; foreach($date as $dates){ $where .= " AND " . $date . = " some column"; }