欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php中查询最近一个月的查询代码报错,请教咋办

程序员文章站 2022-06-01 11:32:47
...
php中查询最近一个月的查询代码报错,请问咋办
//最近一月的订单
$sql_month="select order_id , order_number from order_table where DATE_SUB(CURDATE(), INTERVAL INTERVAL 1 MONTH) var_dump($sql_month) ;
$mysql_month=mysql_query($sql_month) or die("Could not query.".mysql_error()) ;
$info_month=mysql_num_rows($mysql_month) ;
if($info_month==""){
$html_info_month="最近一月没有订单。" ;
}
else{
$str=mysql_fetch_array($mysql_month) ;
// $html_info_month="最近一月的订单" ;
$html_info_month="
    " ;
    do{
    $order_id=iconv("gb2312" , "utf-8//IGNORE" , $str["order_id"]) ;
    $order_number=iconv("gb2312" , "utf-8//IGNORE" , $str["order_number"]) ;
    $html_info_month.="
  • ".$order_number."
  • " ;
    }while($str=mysql_fetch_array($mysql_month)) ;
    $html_info_month.="
" ;
}
查询最近一个月的select语句,是正确的吗?
报错:
string(120) "select order_id , order_number from order_table where DATE_SUB(CURDATE(), INTERVAL INTERVAL 1 MONTH) ------解决方案--------------------
select order_id , order_number from order_table where date > ".strtotime('-1 month')
------解决方案--------------------
1 其实你只想问那句sql,那就不要贴代码了,太多了,好多人不喜欢看
2 $sql_month="select order_id , order_number from order_table where DATE_SUB(CURDATE(), INTERVAL INTERVAL 1 MONTH) = date(order_date)"
php中查询最近一个月的查询代码报错,请教咋办

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频