Online Test for Mysql

  1. Which statement is wrong to select particular columns from table?
    SELECT id, question FROM placement_question;
    SELECT id, question FROM placement_question WHERE id = '2';
    SELECT id, question FROM placement_question WHERE 1;
    All are right

  1. "CREATE DATABASE db_name" statement is used to create database.
    True
    False


  1. Which level of Abstraction describes what data are stored in the Database?
    Physical Level
    View Level
    Abstraction Level
    Logical Level

  1. In SQL, __________ is an Aggregate function.
    SELECT
    CREATE
    AVG
    MODIFY

  1. Which is right statement to insert multiple records?
    INSERT INTO job_question VALUES ('col1', 'col2'), ('col1', 'col2'), ...
    INSERT INTO job_question VALUES ('col1', 'col2'), VALUES ('col1', 'col2'), ...
    A and B Both
    None of the above

  1. _____ is process of extracting previously non known valid and actionable information from large data to make crucial business and strategic decisions.
    Data Management
    Database
    Data Mining
    Meta Data


  1. Data Warehouse provides
    Transaction Responsiveness
    Demand and Supply Responsiveness
    Storage, Functionality Responsiveness to queries
    None of the above

  1. How to set value of "query_cache_size" MYSQL system variable
    SET GLOBAL query_cache_size = 41980;
    SET GLOBAL VARIABLE query_cache_size = 41980;
    SET VARIABLE GLOBAL query_cache_size = 41980;
    None of the above

  1. DML is used for _______?
    Control access to data stored in a database
    Defining database schema
    Inserting, Deleting and Updating data
    None of the above

Post Your Question
Social Sharing
Search