Conocimientos En MySQL

Approved & Edited by ProProfs Editorial Team
The editorial team at ProProfs Quizzes consists of a select group of subject experts, trivia writers, and quiz masters who have authored over 10,000 quizzes taken by more than 100 million users. This team includes our in-house seasoned quiz moderators and subject matter experts. Our editorial experts, spread across the world, are rigorously trained using our comprehensive guidelines to ensure that you receive the highest quality quizzes.
Learn about Our Editorial Process
| By Ysikgranja
Y
Ysikgranja
Community Contributor
Quizzes Created: 1 | Total Attempts: 2,829
preguntas: 10 | Attempts: 2,832

SettingsSettingsSettings
Conocimientos En MySQL - Quiz

Preuébate!... Aprovecha este quiz para probarte y revisar qué tanto conoces de MySQL. Adelante!


Questions and Answers
  • 1. 

    MySQL es...

    • A.

      Un lenguaje de programación

    • B.

      Una técnica para escribir programas confiables

    • C.

      Un sistema de gestión de bases de datos relacionales

    • D.

      Una base de datos

    Correct Answer
    C. Un sistema de gestión de bases de datos relacionales
    Explanation
    MySQL es un sistema de gestión de bases de datos relacionales. Esto significa que es una herramienta que permite organizar y administrar grandes cantidades de información de manera estructurada. MySQL permite crear, modificar y consultar bases de datos, así como gestionar la seguridad y el acceso a la información almacenada en ellas. Es ampliamente utilizado en aplicaciones web y es conocido por ser rápido, confiable y escalable.

    Rate this question:

  • 2. 

    ¿Qué enunciado SQL se utiliza para insertar nuevos datos en una base de datos?

    • A.

      INSERT INTO

    • B.

      UPDATE

    • C.

      ADD

    • D.

      INSERT NEW

    Correct Answer
    A. INSERT INTO
    Explanation
    The correct answer is "INSERT INTO". This SQL statement is used to insert new data into a database. It allows the user to specify the table name and the values to be inserted into the table. The INSERT INTO statement is commonly used in combination with the VALUES clause to provide the actual data to be inserted.

    Rate this question:

  • 3. 

    En una cláusula LIKE, ¿cómo se puede pedir cualquier valor que terminan en "QPT" por escrito?

    • A.

      LIKE %qpt

    • B.

      LIKE *qpt

    • C.

      LIKE %qpt%

    • D.

      LIKE @qpt

    Correct Answer
    C. LIKE %qpt%
    Explanation
    The correct answer is "LIKE %qpt%". This is because the "%" symbol is a wildcard character in SQL that represents zero or more characters. So, when we use "%qpt%", it means that we are looking for any value that has "qpt" as a substring, regardless of what characters come before or after it. The other options are incorrect because they either use the wrong wildcard character ("*") or do not include the "%" symbol to represent the wildcard.

    Rate this question:

  • 4. 

    Un valor NULL se trata como un espacio en blanco o 0.

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
    Explanation
    A NULL value is treated as a blank or 0 value. This means that when a NULL value is encountered in a calculation or comparison, it is treated as if it were a blank or a 0. This is important to consider when working with databases or programming languages that use NULL values.

    Rate this question:

  • 5. 

    Para usar MySQL en el equipo, ¿qué necesita?  

    • A.

      FTP y Telnet

    • B.

      Una especie de programa de cliente para acceder a las bases de datos

    • C.

      Un navegador

    • D.

      HTML, PHP o Java

    Correct Answer
    B. Una especie de programa de cliente para acceder a las bases de datos
    Explanation
    To use MySQL on a computer, you need a client program that allows you to access the databases. This client program acts as a bridge between the user and the MySQL server, allowing you to send queries and retrieve data from the databases. FTP and Telnet are not necessary for using MySQL, as they are protocols for file transfer and remote login, respectively. A browser is also not needed, as it is used for accessing websites and not for interacting with databases. HTML, PHP, and Java are programming languages used for web development and are not specifically required for using MySQL.

    Rate this question:

  • 6. 

    ¿Qué función utiliza para obtener la hora actual en mysql?

    • A.

      GetTime()

    • B.

      Time()

    • C.

      NOW()

    Correct Answer
    B. Time()
    Explanation
    La función correcta para obtener la hora actual en MySQL es Time(). Esta función devuelve la hora actual en el formato HH:MM:SS. getTime() no es una función válida en MySQL y NOW() devuelve la fecha y hora actual en el formato YYYY-MM-DD HH:MM:SS.

    Rate this question:

  • 7. 

    ¿Cuál de los siguientes comandos se utiliza para eliminar toda la base de datos MySQL?

    • A.

      Mysql_drop_database

    • B.

      Mysql_drop_entiredb

    • C.

      Mysql_drop_table

    • D.

      Mysql_drop_tables

    Correct Answer
    A. Mysql_drop_database
    Explanation
    The correct answer is "mysql_drop_database". This command is used to delete or remove an entire database in MySQL. It is specifically designed to delete the entire database, including all its tables, data, and associated objects.

    Rate this question:

  • 8. 

    En una clave primaria se permiten los valores nulos.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    In a primary key, null values are not allowed. A primary key is a unique identifier for each record in a table, and it is used to enforce data integrity and ensure that each record can be uniquely identified. Null values represent missing or unknown data, and they are not allowed in a primary key because they would prevent the uniqueness constraint from being enforced. Therefore, the correct answer is false.

    Rate this question:

  • 9. 

    ¿Cuál de los siguientes comandos se deben utilizar para crear una base de datos denominada "estudiante"?

    • A.

      CREATE ?I student

    • B.

      CREATE DATABASE student

    • C.

      DATABASE /student

    • D.

      DATABSE student

    Correct Answer
    B. CREATE DATABASE student
    Explanation
    The correct answer is "CREATE DATABASE student". This command is used to create a new database named "estudiante".

    Rate this question:

  • 10. 

    Dada una tabla de empleados (employees) de la siguiente manera: emp_id emp_name 1 Brush Cepillo 2 Jerrin Jerrin ¿qué valor será devuelto a partir de la siguiente consulta?  "Select * from employees order by emp_name desc

    • A.

      Muestra los id de los empleados de menor a mayor

    • B.

      Muestra los id de los empleados de mayor a menor

    • C.

      Muestra la tabla completa ordenada de mayor a menor

    • D.

      Muestra sólo los nombres ordenados de menor a mayor

    Correct Answer
    C. Muestra la tabla completa ordenada de mayor a menor
    Explanation
    The query "Select * from employees order by emp_name desc" will return the complete table sorted in descending order based on the emp_name column. This means that the names of the employees will be displayed in alphabetical order from Z to A.

    Rate this question:

Quiz Review Timeline +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 22, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • May 25, 2011
    Quiz Created by
    Ysikgranja
Back to Top Back to top
Advertisement
×

Wait!
Here's an interesting quiz for you.

We have other quizzes matching your interest.