Hello All
Evaluating what appears to be a fantastic product and I am having trouble creating a functional inner join from which one of the tables can be edited.
The DB is running on mysql v4.
I am attempting to create an updateable table view on table2 with table1 fields listed as reference only (will flag table1 fields as "read only" on the web page)
SELECT
table1.ID,
table1.field1,
table1.field2,
table1.field3,
table2.IDmatch,
table2.field1,
table2.field2,
table2.field3,
table2.field1+table2.field2+table2.field3 as total
FROM table2 INNER JOIN table1 ON
table1.ID=table2.IDmatch
After entering the sql manually I can't seem to define the primary key to table2 so it can be updated?
Any help would be greatly appreciated!