• Aug 3

    MYSQL认证010-002考试题库介绍

    考试代号: 010-002
    问题数量:50 Q&As

    更新时间: 2009-08-31
    注册地点: Prometric/Pearson VUE
    题库全称:Certified MySQL Associate(English)

    免费010-002题库Demo赏析

     
     
    Exam : MySQL 010-002
    Title : Certified MySQL Associate (English)

    1. A table is successfully created by executing the following statement:
    CREATE TABLE numbers (
    double_number double,
    decimal_number decimal(2,1)
    )
    One row is successfully inserted into the numbers table. At this point, the table contains the following data:
    +—————+—————-+
    | double_number | decimal_number |
    +—————+—————-+
    | 1.5 | 2.5 |
    +—————+—————-+
    The row is updated by executing the following statement:
    UPDATE numbers
    SET double_number = double_number + 0.25,
    decimal_number = decimal_number + 0.01
    Which values are now stored in the double_number and decimal_number columns of the updated row?
    Select the best response.
    A. 1.8 and 2.5
    B. 1.75 and 2.5
    C. 1.8 and 2.51
    D. 1.75 and 2.51
    Answer: B

    2. Which of the following statements best describes the purpose of the SQL WHERE clause?
    In SQL statements, the WHERE clause specifies …
    Select the best response.
    A. the tables from which data is to be retrieved.
    B. a condition to filter for only specific rows.
    C. a condition to filter for only specific groups defined by a GROUP BY clause.
    D. a number to limit the number of rows that is operated upon by the statement.
    Answer: B

    3. The following output describes the table Country:
    +————+———-+——+—–+———+——-+
    | Field | Type | Null | Key | Default | Extra |
    +————+———-+——+—–+———+——-+
    | Code | char(3) | NO | PRI | | |
    | Name | char(53) | NO | | | |
    | Population | int(11) | YES | | NULL | |
    +————+———-+——+—–+———+——-+
    You want to discard the rows in the Country table for which the value in the Population column is less than 5000 (and retain any other rows). Which of the following statements can be used to do that?
    Select the best response.
    A. DROP Country WHERE Population < 5000
    B. DROP FROM Country WHERE Population < 5000
    C. DELETE FROM Country WHERE Population < 5000
    D. DELETE SELECT * FROM Country WHERE Population < 5000
    Answer: C

    4. The table Product contains exactly one row:
    +——-+——-+———-+
    | Name | Price | Discount |
    +——-+——-+———-+
    | bread | 1.00 | NULL |
    +——-+——-+———-+
    Which of the options best matches the result returned by the following query:
    SELECT Price – Price * Discount
    FROM Product
    Select the best response.
    A. +————————–+
    | Price – Price * Discount |
    +————————–+
    | NULL |
    +————————–+
    B. +————————–+
    | Price – Price * Discount |
    +————————–+
    | 0 |
    +————————–+
    C. +————————–+
    | Price – Price * Discount |
    +————————–+
    | 0.00 |
    +————————–+
    D. +————————–+
    | Price – Price * Discount |
    +————————–+
    | 1.00 |
    +————————–+
    Answer: A

    5. A MySQL table has …
    Select the best response.
    A. zero or more columns, and zero or more rows.
    B. zero or more columns, and one or more rows.
    C. one or more columns, and zero or more rows.
    D. one or more columns, and one or more rows.
    Answer: C

    6. Is it possible to save the result of a SELECT statement into a file using an SQL statement?
    Select the best response.
    A. No, not with SQL alone.
    B. Yes, by using the FILE() function.
    C. Yes, by using the INTO OUTFILE clause.
    D. Yes, by using the LOAD DATA INFILE clause.
    Answer: C

    7. The table Country contains the following rows:
    +————————–+————+
    | Name | Population |
    +————————–+————+
    | Nauru | 12000 |
    | Turks and Caicos Islands | 17000 |
    | Tuvalu | 12000 |
    | Wallis and Futuna | 15000 |
    +————————–+————+
    Which of the following statements will return all rows in the table, sorted by the value in the Population column?
    Select the best response.
    A. SELECT Name, Population ASC
    FROM Country
    B. SELECT Name, ORDER BY Population
    FROM Country
    C. SELECT Name, Population
    FROM Country
    GROUP BY Population ASC
    D. SELECT Name, Population
    FROM Country
    ORDER BY Population
    Answer: D

    8. The Country table exists in the default database. In the same database, you need to create a new table called Country_Copy that is to contain the same columns as the Country table, as well as all of the data in the Country table.
    Which of the following statements can be used to create the Country_Copy table?
    Select the best response.
    A. CREATE TABLE Country_Copy SELECT * FROM Country
    B. INSERT INTO Country_Copy SELECT * FROM Country
    C. CREATE TABLE Country_Copy LIKE Country
    D. COPY TABLE Country TO Country_Copy
    Answer: A

    9. Which part of a SELECT statement specifies the tables from which data is to be retrieved?
    Select the best response.
    A. The SELECT list.
    B. The FROM clause.
    C. The WHERE clause.
    D. The LIMIT clause.
    Answer: B

    10. Which statement can be used to list all columns in the City table?
    Select the best response.
    A. DISPLAY COLUMNS FROM City
    B. SHOW COLUMNS FROM City
    C. SHOW COLUMNS LIKE ‘City’
    D. SHOW City COLUMNS
    Answer: B

    11. In the context of database transactions, the atomicity property guarantees that…
    Select the best response.
    A. during a transaction, rows are processed one at a time.
    B. all statements that are executed inside a transaction are immediately committed.
    C. all statements that are executed inside a transaction are committed or rolled back as one unit.
    D. other transactions cannot see the changes made in other ongoing uncommitted transactions.
    Answer: C

    12. The default database contains a table called City. Which of the following statements may be executed to obtain a statement that could be used to (re-)create the City table?
    Select the best response.
    A. DESCRIBE City
    B. DESCRIBE TABLE City
    C. SHOW TABLE City
    D. SHOW CREATE TABLE City
    Answer: D

    13. Which of the following statements will discard the existing database called world?
    Select the best response.
    A. DELETE DATABASE world
    B. DROP DATABASE world
    C. REMOVE DATABASE world
    D. TRUNCATE DATABASE world
    Answer: B

    14. The following output describes the table City:
    +————-+———-+——+—–+———+—————-+
    | Field | Type | Null | Key | Default | Extra |
    +————-+———-+——+—–+———+—————-+
    | CountryCode | char(3) | NO | PRI | | |
    | CityName | char(35) | NO | PRI | | |
    +————-+———-+——+—–+———+—————-+
    The following output describes the table Country:
    +—————-+————-+——+—–+———+——-+
    | Field | Type | Null | Key | Default | Extra |
    +—————-+————-+——+—–+———+——-+
    | CountryCode | char(3) | NO | PRI | | |
    | CountryName | char(52) | NO | | | |
    | Continent | varchar(10) | YES | | NULL | |
    +—————-+————-+——+—–+———+——-+
    The tables are related through the CountryCode column.
    You need to retrieve all cities and list each CityName with the CountryName of only the corresponding country. Is this possible using the following query?
    SELECT CityName,CountryName
    FROM Country
    INNER JOIN City
    Select the best response.
    A. Yes.
    B. No, you can’t do that in one statement.
    C. No, the tables are listed in the wrong order.
    D. No, the statement needs a condition to match related rows.
    Answer: D

    15. Which of the following statements can be used to list all databases that are accessible to the current user?
    Select the best response.
    A. LIST DATABASES
    B. SHOW DATABASES
    C. DISPLAY DATABASES
    D. VIEW DATABASES
    Answer: B

    免费下载010-002题库Demo

    Examsoon提供最新的MYSQL认证 010-002题库,其全名为:(Certified MySQL Associate(English)). 在您决定是否购买之前 可以先下载010-002题库的部分演示. Examsoon是全球唯一提供所有IT认证考试题库demo免费下载的厂商 ,以下为免费010-002模拟测试题的下载链接

    免费的010-002题库PDF下载链接

    MYSQL 010-002学习指南

    MYSQL认证 010-002考试已经证明了它在全世界的广泛性和重要性,因此明白这项认证考试的世界各地的人必须具备与认证考试相关领域所需的技能和知识。MYSQL认证 010-002学习指南的目的是检查考生的能力和他对概念的意识。很多时候练习测试010-002考试都已经被修改过了,删掉了许多过时的东西,而那些需求是在考试课程。当应用到时候你所学的知识的时候,就会鉴定出你所学到的东西以及对所学知识的应用是多么的恰到好处。MYSQL认证 010-002是在IT行业的知名品牌,所以如果您通过了这样一个知名公司举行的一次考试,你可以想象你将来的事业会做的多么好。

    想要通过这个考试当然存在很多困难。你所要做的就是准备好充足的勇气和信心,而这些都来源与你平时训练的好坏.建议大家可以去Examsoon这个网站看一下,它的010-002考试是为了测试您在这方面的知识的掌握程度,最好的部分是它可以使你不断更新你所学的知识,不断进步。如果你知道所有的概念和如何使用他们的时候才是你真正掌握了Examsoon的用意。这门考试检查了您的能力和一旦你通过这次考验你将成为最优秀的人才,其他010-002考试的Examsoon结算值得注意的影响就是你的薪水将直线上升这大概也是每个人都希望获得的,所以要找一些好的资源才行。

    Examsoon考题大师010-002试题都是考试原题的完美组合,覆盖率95%以上,答案由多位专业资深讲师原版破解得出,正确率100%,只要您使用Examsoon的考试题库参加010-002考试,保证您一次轻松通过考试;

    售后服务第一!我们相信要想在当今时代取得成功,必须为广大用户提供全套的周到细致的全程优质售后服务,只有客户满意了,才能发展。客户至上是Examsoon考题大师的一贯宗旨;

Archives

Recent Comments