mysql中 select id into _ id from table1 where name=para1执行顺序

在mysql中的这个SQL语句执行顺序是怎样的,求教各位大大
2025-12-04 19:32:09
推荐回答(2个)
回答1:

先从table1表按where条件取出id,在写入id

回答2:

从右向左。