Giter VIP home page Giter VIP logo

Comments (4)

neoascetic avatar neoascetic commented on August 25, 2024

Have you tried? :)

from pixie.

pavelinside avatar pavelinside commented on August 25, 2024

Wed, 10 Dec 2014 08:14:05 -0800 от Pavel Puchkin [email protected]:

Have you tried? :)

Reply to this email directly or view it on GitHub .

пример
$connection = new \Pixie\Connection('mysql', $config);
$QB = new \Pixie\QueryBuilder\QueryBuilderHandler($connection);

$qry = $QB->table("usr AS u")
->select(['DISTINCT u.id', 'ua.usrid'])
->join('usractive AS ua', 'ua.usrid', '=', 'u.id')
->join('usractive AS ua2', function($table)
{
$table->on('ua2.usrid', '<>', 'u.id');
$table->on('ua2.somefield', '=', 'Yes');
})
->where('u.id', '=', 1);

echo $queryObj = $qry->getQuery()->getRawSql();

result
SELECT DISTINCT u.id, ua.usrid FROM usr AS u INNER JOIN usractive AS ua ON ua.usrid = u.id INNER JOIN usractive AS ua2 ON ua2.usrid <> u.id AND ua2.somefield = Yes WHERE u.id = 1
Error Table 'usr AS u' doesn't exist

it works if in adapter class Mysql set
protected $sanitizer = '`'; -> protected $sanitizer = '';
it's no error but with 
sanitizer
may be better

from pixie.

neoascetic avatar neoascetic commented on August 25, 2024

This is because to use aliases in joins, you need to mark table name as a raw statement (at least until #48 is not accepted), something like that: QB::join(QB::raw('table AS table_alias')).

from pixie.

usmanhalalit avatar usmanhalalit commented on August 25, 2024

@pavelinside A better approach is implemented by @neoascetic #48 .

Please use master branch if you want use the new approach.

from pixie.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.