Subject | Re: [firebird-support] How create Table from View? |
---|---|
Author | Ivan Prenosil |
Post date | 2005-01-13T15:20:19Z |
> Subject: [firebird-support] How create Table from View?There is no direct command for this.
You must first create table (DDL operation),
then insert data from view (DML operation).
E.g.
CREATE TABLE MyTable (X INTEGER);
COMMIT;
INSERT INTO MyTable SELECT X FROM MyView;
COMMIT;
Ivan
>Yahoo! Groups Links
> Hello,
> Can anybody help me? I was looking for answer but common
> expression
>
> Select * into NewTable From OldView
>
> in Firebird doesnt work.