To know your MYSQL version and current date which of the following command you should use?

5. To know your MYSQL version and current date which of the following command you should use?

  1. VERSION, CURRENT_DATE();
  2. SELECT VERSION, CURRENTDATE();
  3. SELECT VERSION(), CURRENT_DATE;
  4. SELECT VERSON(),CURRENT_DATE();

Answer: C) SELECT VERSION (), CURRENT_DATE;

Explanation:

SELECT VERSION (), CURRENT_DATE; is the command to check the current MYSQL version and date.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.