J
Jason
Hi,
I have this query (see below) from msysobjects where i have an id and the
name from the table.
SELECT msysobjects.Id, msysobjects.Name
FROM msysobjects
WHERE (((msysobjects.Type)=1) AND ((msysobjects.Flags)=0));
What i would like to do, is to store the id from a table with the other
values into another table. That other table has the following
tablestructure:
field datatype
tableid number,
id number,
value currency,
description text
How can i do this?
I have this query (see below) from msysobjects where i have an id and the
name from the table.
SELECT msysobjects.Id, msysobjects.Name
FROM msysobjects
WHERE (((msysobjects.Type)=1) AND ((msysobjects.Flags)=0));
What i would like to do, is to store the id from a table with the other
values into another table. That other table has the following
tablestructure:
field datatype
tableid number,
id number,
value currency,
description text
How can i do this?