摘要:
Left Join与Right Join的区别 在二者之左右均为数据表名。 Left/Right指明执行语句中何者为主, 何才为辅。 Left: 语句中关键字 左侧 数据表为基表,查找 右侧 数据表中相应的数据。 Right:语句中关键字 右侧 数据表为基表,查找 左侧 数据表中相应的数据。 Joi 阅读全文
摘要:
function IsFileInUse(FileName: TFileName): Boolean;var HFileRes: HFILE;begin Result := False; if not FileExists(FileName) then Exit; HFileRes := Creat 阅读全文
摘要:
uses DateUtils; function StartOfTheYear(const AValue: TDateTime): TDateTime;function EndOfTheYear(const AValue: TDateTime): TDateTime;function StartOf 阅读全文