1
0
Fork 0
SVEN/webseite/sys/sources/envms-fluentpdo/tests/18-join-in-select.phpt

16 lines
338 B
PHP

--TEST--
join in where
--FILE--
<?php
include_once dirname(__FILE__) . "/connect.inc.php";
/* @var Envms\FluentPDO\Query */
$query = $fluent->from('article')->select('user.name as author');
echo $query->getQuery() . "\n";
?>
--EXPECTF--
SELECT article.*, user.name as author
FROM article
LEFT JOIN user ON user.id = article.user_id