> This means you need to write
> select "timestamp"(date '1998-02-24', time '23:07');
Less painful might be to use a different syntax:
select (date '1998-02-24' + time '23:07');
should do what you need. Other places where you might be tempted to use
a function call to accomplish type conversion might be handled using the
CAST() function or operator.
- Thomas