example-22222222
SQL
-- create a table CREATE TABLE okok ( c1 varchar2(2), c2 varchar2(2), c3 varchar2(2), c4 varchar2(2), c5 varchar2(2) ); -- insert some values INSERT INTO okok VALUES (null , 'R', 'a', 'a', 'g'); INSERT INTO okok VALUES (null , 'b', 'c', 'd', 'e'); INSERT INTO okok VALUES (null , 's', 'a', 'f', 'g'); INSERT INTO okok VALUES (null , 'a', 'n', 'l', 'g'); -- fetch some values SELECT * FROM okok;
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.