Subject | RE: [firebird-support] Re: Calculated Fields |
---|---|
Author | Simon Carter |
Post date | 2005-09-29T08:39:02Z |
> -----Original Message-----CREATE TABLE COMP (
> or you can created a computed field called FIRSTLAST with
> that formula (I am too lazy to open the book, but you can
> look up how to define computed fields)
FIRST_NAME VARCHAR(25) NOT NULL,
LAST_NAME VARCHAR(25) NOT NULL,
FULL_NAME COMPUTED BY (FIRST_NAME || ' ' || LAST_NAME)
);
Rgds
Si Carter
http://www.fbtalk.net/
http://www.tectsoft.net/