I have a weird situation with SQL code coaches. What should i do ?
I have problems with code coaches in SQL 10.1 ; tasks 1 & 3. Task 1 asks me to output films in this way : name Avengers:Endgame The Avengers However , my code : SELECT name FROM films WHERE year >= 2010 AND production = 'Marvel Studios'; Outputs this ; name The Avengers Avengers:Endgame It's not over. Task 3 asks me to output orders this way : name,age,distance,price Adam,38,2,500 Lisa,44,13,750 But my code : SELECT name, age, distance, price FROM orders WHERE price > 400 AND (Age > 40 OR distance < 10); Outputs them this way : name,age,distance,price Lisa,44,13,750 Adam,38,2,500 I tried adding "ORDER BY price" and it's variations , but i only get "ERROR" messages in response. I'm bringing up both of these because i think that I'm doing the same mistake in both of them. What do you think ?