I can edit the data in both tables individuality with no issue. But how do I edit data in 2 tables using MySQL Workbench (or can I)? I use the below query to get the data but unable to edit it from the table (or using Form Editor).
SELECT
*
FROM
TABLE1
INNER JOIN
TABLE2 ON TABLE1.ID = TABLE2.ID
WHERE
TABLE1.ID = 1
SELECT
*
FROM
TABLE1
INNER JOIN
TABLE2 ON TABLE1.ID = TABLE2.ID
WHERE
TABLE1.ID = 1