40 lines
1.6 KiB
SQL
40 lines
1.6 KiB
SQL
------------------------------------------------------------------------------;
|
|
----
|
|
---- queries.sql: manually maintained queries.
|
|
----
|
|
---- This program is free software; you can redistribute it and/or
|
|
---- modify it under the terms of the GNU General Public License
|
|
---- as published by the Free Software Foundation; either version 2
|
|
---- of the License, or (at your option) any later version.
|
|
----
|
|
---- This program is distributed in the hope that it will be useful,
|
|
---- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
---- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
---- GNU General Public License for more details.
|
|
----
|
|
---- You should have received a copy of the GNU General Public License
|
|
---- along with this program; if not, write to the Free Software
|
|
---- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
---- USA.
|
|
----
|
|
---- Copyright (C) 2016 Simon Brooke for Radical Independence Campaign
|
|
----
|
|
------------------------------------------------------------------------------;
|
|
|
|
-- This file gets slurped in and converted into simple functions by the line
|
|
-- in youyesyet.db.core.clj:
|
|
-- (conman/bind-connection *db* "sql/queries-auto.sql" "sql/queries.sql")
|
|
-- the functions then appeare in the youyesyet.db.core namespace.
|
|
-- Note that queries generated by ADL are in the file
|
|
-- resources/sql/queries-auto.sql; they do not have to be (and should not be)
|
|
-- redefined here.
|
|
|
|
-- :name list-addresses-by-locality :? :*
|
|
-- :doc lists all existing address records in a given locality
|
|
SELECT *
|
|
FROM addresses
|
|
WHERE locality = :locality
|
|
|
|
|
|
|