#1248 - Every derived table must have its own alias - can´t find the reason

336 Views Asked by At

I'm getting this error:

#1248 - Every derived table must have its own alias

the query is:

UPDATE rifa
SET maxRifas=(
              (SELECT maxRifas 
               FROM (SELECT * FROM rifa AS crifa)
               WHERE crifa.id=1)
              -1)
WHERE rifa.id=1;

help please.

2

There are 2 best solutions below

1
On BEST ANSWER

Nested queries must be given an alias when used in a FROM.

UPDATE rifa 
SET maxRifas=
  (
      (SELECT maxRifas 
       FROM (SELECT * 
             FROM rifa
            ) as crifa 
       WHERE crifa.id=1
      )-1
   )     
WHERE rifa.id=1;
4
On

try this

 UPDATE rifa SET maxRifas= (SELECT (maxRifas - 1) from rifa WHERE id=1)  ;