开发者

sql statement help

I have a table which called people, and I have there 2 columns, name and age

How ca开发者_运维知识库n i select the names with age above 15 for example ?

Thanks


SELECT name FROM people WHERE age > 15


SELECT name, age
FROM people
WHERE age >= 15


select name from people where age > 15
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜