Mysql
 sql >> Database >  >> RDS >> Mysql

errore o bug di blocco di mysql?

quando si utilizzano le tabelle di blocco, è necessario bloccare tutte le tabelle nella query. Quando si utilizza una sottoquery, viene creata una tabella. e non lo stai bloccando. per questo stai ricevendo un errore.

riferimento:http://dev.mysql.com/doc /refman/5.0/en/lock-tables.html

dai un alias alla tabella interna

campione testato:

lock tables products as p1 write, products as p2 write ;
select product_id  from products as p1
where product_id  not in ( 
select product_id from products p2 where product_id in (1,2)
) 

E probabilmente hai bisogno di questo:

lock tables radcheck as r1 write, radcheck as r2 write ;

 SELECT * FROM radcheck r1 WHERE id NOT IN (
SELECT id FROM (
  SELECT id FROM radcheck r2 WHERE attribute = 'Password' GROUP BY UserName HAVING COUNT(*) > 1) AS c
 );