>백엔드 개발 >PHP 튜토리얼 >这条sql语句有什么兼容有关问题吗

这条sql语句有什么兼容有关问题吗

WBOY
WBOY원래의
2016-06-13 10:00:16871검색

这条sql语句有什么兼容问题吗?
$query   =   "   select   *   from   $member_table   me1   left   join   (select   *,max(lead_date)   as   maxdate   from   $leada_table   group   by   user_id   order   by   lead_date)   temp   on   (me1.user_id   =   temp.user_id)   where   me1.islead   =   1   and   temp.maxdate  

这条sql语句有什么兼容问题吗?
本地测试通过,服务器上出错You   have   an   error   in   your   SQL   syntax.     Check   the   manual   that   corresponds   to   your   MySQL   server   version   for   the   right   syntax   to   use   near   'select   *,max(lead_date)   as   maxdate   from   haoshutong_leada_cn

本地mysql   4.1.21
服务器   MySQL   4.0.23

------解决方案--------------------
子查询4.0不支持,就是中间那个select

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.