# *********************************************************************
# deptable.txt: help text
# Copyright (c) 2001,2006 Carlo Strozzi
#
# 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; version 2 dated June, 1991.
#
# 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., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# *********************************************************************
# $Id: deptable.txt,v 1.2 2006/03/10 11:26:13 carlo Exp $

                     NoSQL operator: deptable

Assess functional dependency between two table columns.

Usage: deptable [options] column_1 column_2

Options:
    --help (-h)
      Print this help info.

Notes:

Takes two column names and an input table and tries to work-out
whether there is a so called ``functional dependency'' between
the two. The second column is said to be functionally-dependent
on the first column when for each value in the former there is
only one value in the latter.

If column_2 is found to be functionally-dependent upon column_1,
then 'true' is printed to STDOUT and a return-code 0 is returned.
Otherwise the return-code is 1 and 'false' is printed.

The higher the number of records in the input table, the more
reliable the test is.

