ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 235 - MB-500 discussion

Report
Export

DRAG DROP

You use Dynamics 365 Finance.

You must loop through the customers table and display in the Ul the customer account numbers that meet the following requirements:

* Include the first 100 customers.

* The account numbers must be greater than 1.000.

* Order the results from larger to smaller by the customer account number.

You need to write the SQL statement by using SQL in X++.

Which four statements should you include in sequence;1 To answer, move the appropriate statements from the list of statements to the answer area and arrange them in the correct order.

Question 235
Correct answer: Question 235

Explanation:

while select firstonly100 custTable

order by AccountNUm desc

where custTable.AccountNum > 1000

{ info(custTable.AccountNum); }


asked 05/10/2024
tirou RANGA
34 questions
User
0 comments
Sorted by

Leave a comment first