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.
我想在存储在我的数据库中的序列化数组中进行搜索查询。数据如下所示:
a:4:{i:0;s:16:"2013-03-24 15:00";i:1;s:16:"2013-03-24 11:00";i:2;s:16:"2013-03-17 15:00";i:3;s:16:"2013-03-17 11:00";}
字段名称是日期。我想搜索像“2013-03-24”这样的日期,但没有成功。
谢谢。
这是您问题的唯一答案。 创建一个表来保存您以序列化形式存储的所有数据,然后将每个值存储在不同的单元格中。
然后您将能够进行常规的 sql 查询,例如
SELECT * FROM table WHERE date1 = '2013-03-24 15:00'