Hi,
I've started teaching myself SQL for fun. I read "The Manga Guide to Databases" to get an overview then discovered this site. At any rate, I just started and am curious about the very first set of exercises. When I write:
I get an error. The correct answer isselect *
from empinfo
where age > 40;
Is there a special property of "*" such that it needs to be on the same line as the FROM statement? Because the following two are equivalent and return the same thing, and neither give me an error message:select * from empinfo
where age > 40;
select age
from empinfoI realise this is probably a silly question, but there you have it.select age from empinfo