thepower1986
Programmer
Hi guys im extremely new to SQL but im learining.
I would really appreciate if someone can check my sql statment and syntax just to check if it is correct.
its only a few lines
Assuimng "users" as the table and "age" as a column holding numeric data.
I'm trying to view all persons 18 and over in descending order,
SELECT age
FROM users
WHERE age >=18
ORDER BY age DESC
Regards
jon
thanks in advance.
I would really appreciate if someone can check my sql statment and syntax just to check if it is correct.
its only a few lines
Assuimng "users" as the table and "age" as a column holding numeric data.
I'm trying to view all persons 18 and over in descending order,
SELECT age
FROM users
WHERE age >=18
ORDER BY age DESC
Regards
jon
thanks in advance.