Can you INSERT some new records about dogs using white_dogs view?
P.S.: dogs and dogs_sorts are tables.
CREATE VIEW white_dogs AS
SELECT d.name, s.color
FROM dogs AS d
INNER JOIN dogs_sorts AS s
ON d.sort = s.sort
WHERE s.color = 'white';Can you INSERT some new records about dogs using white_dogs view?
P.S.: dogs and dogs_sorts are tables.
CREATE VIEW white_dogs AS
SELECT d.name, s.color
FROM dogs AS d
INNER JOIN dogs_sorts AS s
ON d.sort = s.sort
WHERE s.color = 'white';Create a free account to access the full topic