You appear to be a bot. Output may be restricted
Description
Adds a FULL OUTER JOIN source to the query.
Usage
$ORM = ORM::full_outer_join( $table, $constraint, $table_alias );
Parameters
- $table
- ( string ) required – The table name.
- $constraint
- ( string ) required – The constraint.
- $table_alias
- ( string|null ) optional – The table alias. Defaults to null.
Returns
ORM
Source
File name: wordpress-seo/lib/orm.php
Lines:
1 to 3 of 3
public function full_outer_join( $table, $constraint, $table_alias = null ) { return $this->add_join_source( 'FULL OUTER', $table, $constraint, $table_alias ); }