TherChenYang commented on issue #30600:
URL: 
https://github.com/apache/shardingsphere/issues/30600#issuecomment-2020189415

   I don't quite understand what your question is. Does your original SQL 
contain two separate SQL statements? 
   Like this ?
   ``` sql
   update kq_attendance_daily
   SET attendance_plan_id = ?,
   plan_type = ?
   where id = ?
   and attendance_date = ?
   ;
   update kq_attendance_daily
   SET attendance_plan_id = ?,
   plan_type = ?
   where id = ?
   and attendance_date = ?
   ```
   In ShardingSphere, parsing of the SQL for a single sentence stops when 
encountering a semicolon.
   If you want to rewrite the above sentence into normal form, please split it 
into two SQL statements.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to