Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

FISH

BEGIN TRANSACTION;

/* Create a table called NAMES */
CREATE TABLE NAMES(Id integer PRIMARY KEY, Name text, Age integer , Place Text);

insert into NAMES VALUES(1,'zoro',19,'ribandar');
insert into NAMES VALUES(2,'rover',19,'merces');
insert into NAMES VALUES(3,'moon',18,'siolim');
insert into NAMES VALUES(4,'raj',19,'merces');

select * from NAMES;

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.