RussellEngland / php-sql-parser

Automatically exported from code.google.com/p/php-sql-parser
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

missing having clause in creator #112

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
If one is to copy all the WHERE classes but replace with HAVING and add 

        if (isset($parsed['HAVING'])) {
            $sql .= " " . $this->buildHAVING($parsed['HAVING']);
        }
into SelectStatementBuilder.php then the ability to create queries with HAVING 
in them is restored.

Original issue reported on code.google.com by i...@theorganicagency.com on 9 Jan 2014 at 11:18

GoogleCodeExporter commented 8 years ago
oops forgot to attach the files

Original comment by i...@theorganicagency.com on 9 Jan 2014 at 11:20

Attachments:

GoogleCodeExporter commented 8 years ago
Fixed in r960, thank you very much!!

Original comment by pho...@gmx.de on 9 Jan 2014 at 12:09