Weather Observation Station 2

  • + 7 comments

    This question is poorly written. Note the possible ways to interpret:

    "Write a query to print the sum of LAT_N and LONG_W up to 2 decimal places separated by space."

    This could read as "Print the sum of LAT_N + the sum of LONG_W", or "Print the sum of each column". Also, the problem mentions nothing of ROUNDING the decimals. As a result, TRUNCATE doesn't work, which based on the problem should be the (more) correct function.

    So for anyone confused about what is being requested, print the sum of each column, ROUNDED to two decimals.