mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-04 06:12:38 -06:00
SqlExp: minor fix
git-svn-id: svn://ultimatepp.org/upp/trunk@1540 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
670b34e230
commit
88765f9830
1 changed files with 4 additions and 4 deletions
|
|
@ -471,10 +471,10 @@ public:
|
|||
SqlSelect& RightJoin(SqlId table) { return RightJoin0(~table); }
|
||||
SqlSelect& FullJoin(SqlId table) { return FullJoin0(~table); }
|
||||
|
||||
SqlSelect& InnerJoin(const SqlSet& set) { return InnerJoin0(~set(SqlSet::SETOP + 1)); }
|
||||
SqlSelect& LeftJoin(const SqlSet& set) { return LeftJoin0(~set(SqlSet::SETOP + 1)); }
|
||||
SqlSelect& RightJoin(const SqlSet& set) { return RightJoin0(~set(SqlSet::SETOP + 1)); }
|
||||
SqlSelect& FullJoin(const SqlSet& set) { return FullJoin0(~set(SqlSet::SETOP + 1)); }
|
||||
SqlSelect& InnerJoin(const SqlSet& set) { return InnerJoin0(~set(SqlSet::SETOP)); }
|
||||
SqlSelect& LeftJoin(const SqlSet& set) { return LeftJoin0(~set(SqlSet::SETOP)); }
|
||||
SqlSelect& RightJoin(const SqlSet& set) { return RightJoin0(~set(SqlSet::SETOP)); }
|
||||
SqlSelect& FullJoin(const SqlSet& set) { return FullJoin0(~set(SqlSet::SETOP)); }
|
||||
|
||||
SqlSelect& Where(const SqlBool& exp);
|
||||
SqlSelect& On(const SqlBool& exp);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue