April L <april@i-netco.com> writes:
> In an old DOS database program I programmed in for years, there was a handy
> function called
> KEYEXISTS("value",index)
There's a perfectly standard EXISTS predicate in SQL ... why not
use that?
EXISTS(SELECT 1 FROM table WHERE column = 'value')
regards, tom lane