Public Vars

Back

from (clj)

(source)

function

(from & tables)
Accepts one or more table names, or table/alias pairs. (-> (select :*) (from [:foo :bar])) Produces: SELECT * FROM foo AS bar

Examples