NAME
SqlSelectStatement — Make and return a SQL SELECT statement.
SYNOPSIS
SqlSelectStatement TableName ?TargetList? ?WhereDict?
DESCRIPTION
Return Value
SQL SELECT constructed from inputs.
Arguments
TableNameName of table to do select on.
TargetListList of targets to select.
WhereDictColumn name / value pairs.
More Info
Note that for the dicts, you (currently) must put quotes around any values that will go into text columns or receive an error. We may add support in a future release for automatically detecting the column type and quoting values as necessary.

For information regarding exceptions / errors, see here.
EXAMPLES
% SqlSelectStatement my_table {notes} {desc 'first'}
SELECT notes FROM my_table WHERE desc = 'first'
SEE ALSO
SqlCountStatement, SqlInsertStatement, SqlUpdateStatement, SqlWhereClause
KEYWORDS
sql