Q&A

  • 분류먼저 해주시길 부탁드립니다.
with Datamod.QryTranSum do

begin

Close;

SQL.Clear;

SQL.Add('DELETE FROM trstatisticst12 ');

SQL.Add('where Trdate = 19991220');

ExecSQL;

end;

이며 Trdate 가 Char 형일 경우에는

with Datamod.QryTranSum do

begin

Close;

SQL.Clear;

SQL.Add('DELETE FROM trstatisticst12 ');

SQL.Add('where Trdate = ''19991220''');

ExecSQL;

end;

로 하여 19991220 이 문자열이라는 것을 SQL에 표시하여야 합니다.

0  COMMENTS