CREATE TABLE Games
(
    title VARCHAR(100) NOT NULL,
    description VARCHAR(500),
    htmlCode VARCHAR(2000),
    rules VARCHAR(2000),
    playRate DOUBLE,
    winRate DOUBLE
);

INSERT INTO Games(title,description, htmlCode, rules, playRate, winRate)
    VALUES('Bustout!','A nice game','<applet code=Bustout width=200 height=320> </applet>','Click anywhere in the picture to start a game. The paddle will track the mouse pointer as long as the pointer remains in the picture. Break out all of the bricks to proceed to the next level. The ball moves faster and the paddle becomes smaller with each successive level.',1,1);
INSERT INTO Games(title,description, htmlCode, rules, playRate, winRate)
    VALUES('3D driver','A nice game','<applet code=Driver.class name=Driver width=400 height=300 ></applet>','Drive around curves, up and down hills, around the windy mountainside road, while avoiding bidirectional traffic.',2,1);

select * from PORTAL.GAMES