Constructors January 22, 2013 A constructor is a special purpose java class method used for initializing a class object. While creating a constructor keep the following p... 0
SELECT Statement January 22, 2013 The SELECT statement is used for accessing the contents of a table. Queries for using the SELECT statement is given bellow. SELECT * FROM ta... 0
INSERT Statement January 21, 2013 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... 0
CREATE Statement January 21, 2013 The CREATE statement is used for creating a table in database. Syntax: CREATE TABLE Table_name (coloumn_1 datatype, coloumn_2 datatype,........ 0