Database Important Point

Database basically Used to store the data in tabular format . but this is only possible because of RDBMS Technology.
> RDBMS(Relational Database Management System ) :-used to store data in tabular format .
_________________________________________________________________________________
.
Basic Command used in Command console 
> create Database Anand;
> show databases;
> use Anand;
> show tables;
> CREATE TABLE STUDENTS(SID INT,SNAME VARCHAR(15),EMAIL VARCHAR(30),PHONE LONG,FEE FLOAT);
> INSERT INTO STUDENTS VALUES(101,'Anand',"anand@blore.COM",8985558,9979.99);
INSERT INTO STUDENTS VALUES(102,'Antrish',"antrish@blore.COM",8944589,9949.99);
INSERT INTO STUDENTS VALUES(103,'Ajeet',"ajeet@blore.COM",8983389,9299.99);
> drop database Anand;
> Select * from Students 


============Better see attached image ==================

Comments

Popular posts from this blog

Converting JSONArray into CSV file in java

Online Book Store Website Using Java

How to read CSV File in Java