Reputation: 33
I have a table which called people, and I have there 2 columns, name and age
How can i select the names with age above 15 for example ?
Thanks
Upvotes: 3
Views: 69
Reputation: 17957
SELECT name, age FROM people WHERE age >= 15
Upvotes: 2
Reputation: 4952
select name from people where age > 15
Upvotes: 1
Reputation: 838156
SELECT name FROM people WHERE age > 15
Upvotes: 4