INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- creation procedure; allows to create simple SQL SELECT
-- statement that consist only of the SELECT, FROM and WHERE
-- sections
-- string 's' is the comma-delimited list of columns are
-- participating in selection
-- same as 'select_' but with "DISTINCT" right after "SELECT"
-- same as 'select_' but accumulates contents of the SELECT section
-- string 's' is the comma-delimited list of tables/views
-- are participating in selection
-- same as 'from_' but accumulates contents
-- string 's' is the contents of the WHERE section
-- this method assigns a new part of the WHERE section,
-- merging it with the previous one via AND
-- this method assigns a new part of the WHERE section,
-- merging it with the previous one via OR
-- this method assigns a new contents of the GROUP BY section
-- This method assigns a new contents of the HAVING section.
-- this method assigns a new contents of the UNION section
-- this method assigns a new contents of the UNION ALL section
-- this method assigns a new contents of the ORDER BY section
-- returns tables list (the contents of the FROM section)
-- redefined from SIMPLE_QUERY
-- ...
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |