从日期时间列获取数据
假设我在数据库中有一个“日期时间”列。它的数据类似于“2010-10-01 09:12:00”。 除此之外,我想制作一个搜索页面,其中包含:
<select id="month" name="month">
<option value="01">01</option>
<option value="02">02</option>
...
</select>
<input type="text" id="year" name="year">
如果我选择month=10
和year=2010
,我如何获取数据?
lets say I have a "Datetime" column in DB. It has a data like "2010-10-01 09:12:00".
Beside that, i want to make a searching page which have:
<select id="month" name="month">
<option value="01">01</option>
<option value="02">02</option>
...
</select>
<input type="text" id="year" name="year">
How do i do to get data if i choose month=10
and year=2010
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请注意,上述内容将无法在日期列上使用索引(如果存在)。要使用索引,您必须使用如下内容:
Be aware that the above won't be able to use an index on your date column, if one exists. To use an index, you'd have to use something like this: