Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE TABLE MANCROFT
(ID number
,LastName varchar2(15)
,FirstName varchar2(15)
,Phone varchar2(15)
);
Table created.
INSERT INTO MANCROFT VALUES (1,'Hunt','Dave','801-733-5333');
INSERT INTO MANCROFT VALUES (5,'Doe','John','212-555-1212');
select * from mancroft;
ID LASTNAME FIRSTNAME PHONE
---------- --------------- --------------- ---------------
1 Hunt Dave 801-733-5333
5 Doe John 212-555-1212