Skip to content
Advertisement

mysql query error: SQL sum with condition

This is my code:

and there is a syntax error about ‘select’ saying that ‘select is not valid in this position for this server version, expecting ” ( ” with’ …

How could I fix this?

the query is based on this question(SQL sum with condition)

Advertisement

Answer

One obvious error in your query is case where instead of case when.

In addition:

  • The GROUP BY columns should be consistent with the unaggregated SELECT expressions.
  • Never use commas in the FROM clause. Always use proper, explicit, standard, readable JOIN syntax.
  • Use table aliases and qualify column references.

So, this might work:

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement