Version Info

Help About Web Editors Languages Home
Online VI Editor
Online Emacs Editor
Programming Languages
Ada (Gnat)
Assembly
C
C99 Strict
COBOL
C++
C++11
C++0x
C#
D Language
Erlang
Fortran-95
F#
Haskell
ICON
Java
Mozart-OZ
Nimrod
Objective-C
OCaml
Pascal
Pawn
Scala
Simula
VB.Net
Verilog
Suggest more....
Esoteric Programming
Befunge
Brainf**k
Intercal
Malbolge
Unlambda
Whitespace
Scripting Languages
Algol-68
Awk
Bash Shell
Basic
Clojure
Fantom
Factor
Falcon
Forth
Go
Groovy
Jython
LISP
Lua
Matlab/Octave
Perl
PHP
Pike
Prolog
Python
Python-3
R Programming
Ruby
Scheme
Smalltalk
SQLite SQL
Tcl
Unix Shell
Suggest more....
Web Programming
Try HTML-5 Online
Try CSS-3 Online
Try Javascript Online
Try jQuery-1.9.1 Online
Try jQuery-2.0.0 Online
Try jQueryUI-1.10.3 Online
Try MooTools-1.4.5 Online
Try Prototype-1.7.1.0 Online
Try Raphael-2.1.0 Online
Try AngularJS-1.0.6 Online
Try Dojo-1.8.3 Online
Try ExtJS-3.1.0 Online
Try VB-Script Online
Suggest more....
Mobile Technologies
Try jQueryMobile Online
Suggest more....
BEGIN TRANSACTION;

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

/* Create few records in this table */
INSERT INTO NAMES VALUES(1,'Tom');
INSERT INTO NAMES VALUES(2,'Lucy');
INSERT INTO NAMES VALUES(3,'Frank');
INSERT INTO NAMES VALUES(4,'Jane');
INSERT INTO NAMES VALUES(5,'Robert');
COMMIT;

/* Display all the records from the table */
SELECT * FROM NAMES;