User Tools

Site Tools


podoc:number_of_location_references_sql_function

Database Function Description of "number_of_location_references"

Name

number_of_location_references

Description

Counts the number of references to a particular location.

Tentative (is this correct?): this represents the number of photos in the database captured at the specified location.

Purpose

To retrieve the number of references to a particular location.

Schema

CREATE FUNCTION number_of_location_references(INTEGER) RETURNS BIGINT
AS 'select count(photo.identifier)
      from photo, location
     where photo.location=location.identifier
       and location.identifier = $1' LANGUAGE 'sql';

History

Used first

Version 2.5

Used last

Still in use

Change history

= Version 2.5 =

CREATE FUNCTION number_of_location_references(INTEGER) RETURNS BIGINT
AS 'select count(photo.identifier)
      from photo, location
     where photo.location=location.identifier
       and location.identifier = $1' LANGUAGE 'sql';
podoc/number_of_location_references_sql_function.txt · Last modified: 2007/04/23 14:31 by Luud