delphi中如何用SQL语句实现多条件查询?(50分)

  • 主题发起人 主题发起人 xiegx
  • 开始时间 开始时间
X

xiegx

Unregistered / Unconfirmed
GUEST, unregistred user!
有一个专家数据库(access数据库),据这个库所提供的一些子段的条件查处满足这些条件的
一些专家(用SQL语句实现).
 
slect * from 表名 where 条件1 and 条件2......
 
请说得详细点
 
select * from table1 where a>edit1.text and a<edit2.text
select * from table2 where a>edit1.text or a<edit2.text
你找本sql的书或者文章看看,很快就知道了。
还有……between……
……in
……等关键字。
 
SELECT * FROM 数据库表名称 where 条件1 and 条件2 and ....
 
Select * from tablename where (條件1) and (條件1)
 
select * from tablename
where 字段名1 = 变量1 and 字段名2 = 变量2 。。。。。
 
就是字符串的拼接!!
 
多人接受答案了。
 
后退
顶部