gpt4 book ai didi

php - 日期数据类型工作其他数据类型不工作 Sql

转载 作者:行者123 更新时间:2023-11-29 02:58:03 25 4
gpt4 key购买 nike

当我选择使用 date 格式时,它正在工作,例如:

select * 
from driverdetails
where licenserenewaldate between '2015-01-27' and '2015-02-27'

当我使用 varchartext (27-01-2015) 时,它没有检索。

select * 
from driverdetails
where licenserenewaldate between '27-01-2015' and '27-02-2015'

它不起作用。它显示空值。

最佳答案

如果您使用 POST 或 GET 请求提交要过滤的数据,您可以先使用 strtotime() 函数,然后再将其包含在您的查询中。

看看这个 strtotime manual .

格式化 yyyy-mm-dd 中的数据:

$yourDateData=date('Y-m-d',strtotime($yourDateData));

可以引用here更多日期格式。

关于php - 日期数据类型工作其他数据类型不工作 Sql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28165489/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com