Using SQL create a view RS for the relations R and S. The view consists of the columns A and D renamed as X and Y in that order. Insert a tuple <10, 15> into it. Show the contents of the view.
create view RS as select A as X , D as Y;
insert into RS values (10, 15);