Constructors

Constructors

A constructor is a special purpose java class method used for initializing a class object. While creating a constructor keep the following p...
SELECT Statement

SELECT Statement

The SELECT statement is used for accessing the contents of a table. Queries for using the SELECT statement is given bellow. SELECT * FROM ta...
INSERT Statement

INSERT Statement

As the name suggested the INSERT statement help us to insert values to a table. SQ L queries for perform the INSERT operation are the follow...
CREATE Statement

CREATE Statement

The CREATE statement is used for creating a table in database. Syntax: CREATE TABLE Table_name (coloumn_1 datatype, coloumn_2 datatype,........