mysql> Select Emp_B AS Total
-> From (Select Sum(mines.NoOfWorkers) AS Emp_B from mines);
ERROR 1248 (42000): Every derived table must have its own alias
mysql> Select Emp_B AS Total
-> From (Select Sum(mines.NoOfWorkers) from mines) AS Emp_B;
ERROR 1054 (42S22): Unknown column 'Emp_B' in 'field list'
I am having some problem with this SQL statement. Any assistance will be mose appreciated
As the error states
Every derived table must have its own alias
Just give it an alias, likex
above. ORAS x
, but theAS
word is optional.Or why alias it twice...
But since SUM gives you exactly one value, unless you have simplified the query from some larger one, this gives exactly the same result??