摘要: Left Join与Right Join的区别 在二者之左右均为数据表名。 Left/Right指明执行语句中何者为主, 何才为辅。 Left: 语句中关键字 左侧 数据表为基表,查找 右侧 数据表中相应的数据。 Right:语句中关键字 右侧 数据表为基表,查找 左侧 数据表中相应的数据。 Joi 阅读全文
posted @ 2019-05-24 08:50 inocalli 阅读(7630) 评论(0) 推荐(2) 编辑
摘要: function IsFileInUse(FileName: TFileName): Boolean;var HFileRes: HFILE;begin Result := False; if not FileExists(FileName) then Exit; HFileRes := Creat 阅读全文
posted @ 2019-05-24 08:45 inocalli 阅读(226) 评论(0) 推荐(0) 编辑
摘要: uses DateUtils; function StartOfTheYear(const AValue: TDateTime): TDateTime;function EndOfTheYear(const AValue: TDateTime): TDateTime;function StartOf 阅读全文
posted @ 2019-05-24 08:44 inocalli 阅读(232) 评论(0) 推荐(0) 编辑