Would anyone please solve these questions All of them please
Would anyone please solve these questions???? All of them please
 follows: (0.5 point) Table Name: PEOPLE Robert Mary the output of the following SQL query: Show SELECT First Nane. Last Name AGE 13 THEN \'TEENAGER walEN 19 THEN WHEN AGE 19 END AS LIFE STAGE Write your answer in this box. Agetin Years) Solution
1.
2.
CREATE SEQUENCE MYSEQUENCE
START WITH 200
INCREMENT BY -10
CACHE 10
CYCLE;
3.
LOOP
DBMS_OUTPUT.PUT_LINE(borrower_rec.Tools(i).ToolName);
DBMS_OUTPUT.PUT_LINE(\'There are \' || borrower_rec.Tools(i).COUNT ||\' tools borrowed by this borrower\');
end loop;
| FirstName | LastName | LIFE_STAGE | 
| Tim | Anderson | CHILD | 
| Robert | Dickson | TEENAGER | 
| Beth | Roberts | CHILD | 
| Nancy | Ricken | TEENAGER | 
| John | Good | ADULT | 
| Mary | Smith | ADULT | 

