I created a view in my MariaDB database:
CREATE
ALGORITHM = MERGE
DEFINER = 'user'@'%'
SQL SECURITY DEFINER
VIEW Test
AS
SELECT
Students.id AS studentId,
StudentGroups.id AS groupId
FROM
Students
INNER JOIN StudentGroups
ON Students.id = Groups.studentId;
When I check as explained here if the view is updatable, it tells me yes:
SELECT
IS_UPDATABLE
FROM
INFORMATION_SCHEMA.VIEWS
WHERE
TABLE_NAME = `Test`;
But when opening the view from LibreOffice Base (in the table tab), records cannot be updated.
Am I doing it wrong or does LibreOffice disallow edition?