南
南宫慕容
Unregistered / Unconfirmed
GUEST, unregistred user!
delphi5/Oracle7
在查询时,如果有一字段:riqi是日期型的
sql语句这样写:
with adoquery1 do
begin
close;
sql.clear;
sql.add('select * from table where riqi=''1980-01-01'''');
open;
active:=true;
end;
不能执行,现在想知道如果想查询确切的日期,该怎么写sql语句?
在查询时,如果有一字段:riqi是日期型的
sql语句这样写:
with adoquery1 do
begin
close;
sql.clear;
sql.add('select * from table where riqi=''1980-01-01'''');
open;
active:=true;
end;
不能执行,现在想知道如果想查询确切的日期,该怎么写sql语句?