开发者

sql statement help

开发者 https://www.devze.com 2022-12-17 11:10 出处:网络
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 ?

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

精彩评论

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

关注公众号