example (SQL)
SQL
-- create a table
CREATE TABLE students (
fname char,
lname char,
num int
);
-- insert some values
INSERT INTO students VALUES ('sai', 'Ryan', 123);
INSERT INTO students VALUES ('pavan', 'Joanna', 456);
insert into students values('venkat', 'sujatha', 789);
-- fetch some values
SELECT * FROM students;
Output
Embed on website
To embed this program on your website, copy the following code and paste it into your website's HTML:
Comments
This comment belongs to a banned user and is only visible to admins.
This comment belongs to a deleted user and is only visible to admins.