SQL Problem of the day #4
Problem statement: Find all the child grandparent relation from the table.
table creation and data insertion script:
CREATE TABLE family
(
child VARCHAR(50),
parent VARCHAR(50)
);
INSERT INTO family VALUES('Chandragupta',null),
('Bindusara','Chand...
ishwarkoki.hashnode.dev2 min read