nse5_faz-72 Exam QuestionsBrowse all questions from this exam

nse5_faz-72 Exam - Question 38


Which SQL query is in the correct order to query the database in the FortiAnalyzer?

Show Answer
Correct Answer: C

The correct order for an SQL query to query a database is SELECT, FROM, WHERE, GROUP BY, ORDER BY, LIMIT, OFFSET. Option C follows this sequence properly: it starts with SELECT devid, specifies the table with FROM $log, filters the results with WHERE 'user'='USER1', and then groups the results with GROUP BY devid.

Discussion

2 comments
Sign in to comment
GriffXXOption: C
Mar 26, 2024

C is correct. There is a mandatory sequence of SQL commands (if they are used, after SELECT and FROM, the rest are optional) Page 141 of 7.2 Study Guide. The order is : SELECT, FROM, WHERE, GROUP BY, ORDER BY, LIMIT, OFFSET.

AminshonOption: C
May 27, 2024

The order is : SELECT, FROM, WHERE, GROUP BY, ORDER BY, LIMIT, OFFSET. FortiAnalyzer_Analyst_7.2_Study_Guide page 11