Ouzo\Db\Dialect\Dialect::_using PHP Method

_using() protected method

protected _using ( $usingClauses, $glue = ', ', $table = null, $alias = null )
    protected function _using($usingClauses, $glue = ', ', $table = null, $alias = null)
    {
        $using = DialectUtil::buildUsingQuery($usingClauses, $glue, $table, $alias);
        if ($using) {
            return ' USING ' . $using;
        }
        return '';
    }