API16:JDatabaseQuery/from

From Joomla! Documentation

Jump to: navigation, search

[Edit Descripton]

Description:JDatabaseQuery/from

Contents

Syntax

from($tables)
Parameter Name Default Value Description
$tables A string or array of table names

Defined in

libraries/joomla/database/databasequery.php

Importing

jimport( 'joomla.database.databasequery' );

Source Body

public function from($tables)
{
        if (is_null($this->_from)) {
                $this->_from = new JDatabaseQueryElement('FROM', $tables);
        } else {
                $this->_from->append($tables);
        }
 
        return $this;
}

[Edit See Also] SeeAlso:JDatabaseQuery/from

Examples


Personal tools