Maison  >  Questions et réponses  >  le corps du texte

这条联合sql语句哪里错了?

((( SELECT a.log_id,`create_date`,`content`,`creator`,`belong_to_user`,a.customer_code,`follow_up_way` 
FROM gs_log a left join gs_customer b on a.customer_code = b.customer_code WHERE 
( b.customer_code != '' AND b.customer_id = 2212 ) )) union (( SELECT a.log_id,`create_date`,`content`,`creator`,`belong_to_user`,`customer_code`,`follow_up_way` 
FROM gs_log a left join gs_r_customer_log on a.log_id = gs_r_customer_log.log_id WHERE ( gs_r_customer_log.customer_id= 2212 ) ))) limit 0,10

这条语句哪里错了,半天没找到,错误提示

[SQL]((( SELECT a.log_id,`create_date`,`content`,`creator`,`belong_to_user`,a.customer_code,`follow_up_way` 
FROM gs_log a left join gs_customer b on a.customer_code = b.customer_code WHERE 
( b.customer_code != '' AND b.customer_id = 2212 ) )) union (( SELECT a.log_id,`create_date`,`content`,`creator`,`belong_to_user`,`customer_code`,`follow_up_way` 
FROM gs_log a left join gs_r_customer_log on a.log_id = gs_r_customer_log.log_id WHERE ( gs_r_customer_log.customer_id= 2212 ) ))) limit 0,10

[Err] 1064 - 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 'union (( SELECT a.log_id,`create_date`,`content`,`creator`,`belong_to_user`,`cus' at line 3
橱窗的光橱窗的光2785 Il y a quelques jours879

répondre à tous(2)je répondrai

  • 数据分析师

    数据分析师2017-10-01 00:42:37

    Quel est le problème avec cette déclaration SQL commune ? - Questions et réponses sur le site Web chinois PHP - Qu'est-ce qui ne va pas avec cette déclaration SQL commune ? - Questions et réponses sur le site Web chinois PHP

    Veuillez regarder et apprendre.

    répondre
    0
  • 迷茫

    迷茫2017-03-06 10:15:12

    你括号加太多了,相当于最外面那层是(...) limit 0,10,只能是(...) union (...) limit 0,10

    (( SELECT a.log_id,`create_date`,`content`,`creator`,`belong_to_user`,a.customer_code,`follow_up_way` 
        FROM gs_log a left join gs_customer b on a.customer_code = b.customer_code WHERE 
        ( b.customer_code != '' AND b.customer_id = 2212 ) ))
      union 
    (( SELECT a.log_id,`create_date`,`content`,`creator`,`belong_to_user`,`customer_code`,`follow_up_way` 
        FROM gs_log a left join gs_r_customer_log on a.log_id = gs_r_customer_log.log_id WHERE ( gs_r_customer_log.customer_id= 2212 ) ))
     limit 0,10

    répondre
    0
  • Annulerrépondre