Fix join orden on query.
This commit is contained in:
		| @@ -112,6 +112,10 @@ class ModelMySQL { | ||||
|     } else { | ||||
|       $sql .= ' FROM '.static::table(); | ||||
|     } | ||||
|  | ||||
|     if(static::$querySelect['innerJoin'] != '') { | ||||
|       $sql .= static::$querySelect['innerJoin']; | ||||
|     } | ||||
|      | ||||
|     if (static::$querySelect['leftJoin'] != '') { | ||||
|       $sql .= static::$querySelect['leftJoin']; | ||||
| @@ -121,10 +125,6 @@ class ModelMySQL { | ||||
|       $sql .= static::$querySelect['rightJoin']; | ||||
|     } | ||||
|      | ||||
|     if(static::$querySelect['innerJoin'] != '') { | ||||
|       $sql .= static::$querySelect['innerJoin']; | ||||
|     } | ||||
|      | ||||
|     if (static::$querySelect['where'] != '') { | ||||
|       $sql .= ' WHERE '.static::$querySelect['where']; | ||||
|        | ||||
|   | ||||
		Reference in New Issue
	
	Block a user