Recuerda que en las ciencias cualquier problema puede tener varias soluciones, de igual modo te mostraremos lo más óptimo y mejor.
Ejemplo 1: BASE DE DATOS DROP de MySQL
The DROPDATABASE statement drops alltablesin the databaseand deletes the database permanently. Therefore, you should be very careful whenusing this statement.
The following shows the syntax of the DROPDATABASE statement:
DROPDATABASE[IFEXISTS] database_name;In MySQL, the schemais the synonym for the database, therefore, you can use them interchangeably:
DROPSCHEMA[IFEXISTS] database_name;
Ejemplo 2: eliminar de la base de datos
DELETEFROM table_name WHERE condition;
Ejemplo 3: SQL Delete base de datos
Deletes the entire database.
Example: Deletes a database named ‘websitesetup’.DROPDATABASE websitesetup;
Calificaciones y comentarios
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)