Author: jyoti rani

SQL UPDATE Statement 0

SQL UPDATE Statement

How to update data in a Table? Answer is to use UPDATE query. It is used with WHERE clause to avoid accidental update in all the columns rather than updates required...

SQL DELETE STATEMENT 0

SQL DELETE STATEMENT

This statement is used to delete one/more/all rows from the table depending upon some conditions. Syntax: DELETE ALL DATA in table without deleting table structure, index, constraints. DELETE * FROM...

SQL DROP Database 0

SQL DROP Database

This statement is used to Delete all Structure/Data in database. Syntax: DROP database “DatabaseName”; Example: Below query will delete Structure/Data from the database. To DROP the database in “CREATE database tutorialmines”...

SQL SELECT/USE Database 0

SQL SELECT/USE Database

When you open your database editor, you will have to select which database you would like to use among multiples database residing on your system. USE keyword offers this feature....

0

SQL CREATE Database

This statement is used to create a new database in the SQL. Syntax: CREATE database “DatabaseName”; DatabaseName – It can be anything i.e. combination of alphanumericals, alphabets, undrscore, hypens etc....

Sql – Start with me 0

Sql – Start with me

SQL – Start with me. Now the question arise, how to start with it? You just need one database and you are ready to go with the editor to start...