求帮忙 在SQL数据库查询某一个人.

2025-02-01 03:52:50
推荐回答(4个)
回答1:

select * from table a where a.date >= '2013-12-01' and a.date <= '2013-12-30' and a.name = '张三'

注意时间的类型,如果是date类型的要to_char()下,如果是varchar的,就直接用

回答2:

你不把表结构贴上来怎么给你查?

回答3:

select * from CQ where name='张三'

回答4:

select * from table_name where name=zhangsan;
这样的?