SQL Query Builder ยป Query Building Functions

build-select(table &key (schema *schema*) (output-stream *standard-output*))
returns SxQL select s-expression

schema: string or keyword representing schema

table: string or keyword representing the table

output-stream: pretty print in lower case to this stream. nil means no printing.

build-insert(table &key (schema *schema*) (output-stream *standard-output*))
returns SxQL insert-into s-expression

schema: string or keyword representing schema

table: string or keyword representing the table

output-stream: pretty print in lower case to this stream. nil means no printing.

build-update(table &key (schema *schema*) (output-stream *standard-output*))
returns SxQL update s-expression

schema: string or keyword representing schema

table: string or keyword representing the table

output-stream: pretty print in lower case to this stream. nil means no printing.

build-delete(table &key (schema *schema*) (output-stream *standard-output*))
returns SxQL delete-from s-expression

schema: string or keyword representing schema

table: string or keyword representing the table

output-stream: pretty print in lower case to this stream. nil means no printing.