Which is the correct MariaDB query syntax to declare a variable having the type of a column from the table?

44. Which is the correct MariaDB query syntax to declare a variable having the type of a column from the table?

  1. DECLARE variable_name TYPE OF table_name.column_name;
  2. DECLARE variable_name IN table_name.column_name;
  3. DECLARE variable_name TYPE OF table_name.column_name FROM table_name;
  4. None of the above

Answer: A) DECLARE variable_name TYPE OF table_name.column_name;

Explanation:

The correct MariaDB query syntax to declare a variable having the type of a column from the table is:

Syntax:

DECLARE variable_name TYPE OF table_name.column_name;

Comments and Discussions!

Load comments ↻






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