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.
Nested queries must be given an alias when used in a FROM.