Learn2Done

DROP TABLE

To delete a table from database, we use DROP TABLE statement  Syntax: DROP TABLE table_name; Example: To delete ‘students’ table. DROP TABLE...

Continue reading...

DROP DATABASE

To delete existing database, we use following syntax: Syntax: DROP DATABASE database_name; Example: To delete learn2done database. DROP DATABASE learn2done;

Continue reading...

CREATE DATABASE

To create a new database, we use following syntax: Syntax: CREATE DATABASE databasename; Example: The following statement create database named ‘learn2done’...

Continue reading...

C MATHS

C Programming allows us to perform mathematical operations through the functions defined in <math.h> header file. The <math.h> header file...

Continue reading...