Single Choice Easy

QYou are to complete the code needed to read records. Which will best complete this statement?

While _________  fmVehicleMaint join fmVehicle

ID: #9387 Database Manipulation in D365 F&O X++ 250 views
Question Info
#9387Q ID
EasyDifficulty
Database Manipulation in D365 F&O X++Topic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A select forUpdate
  • B select
  • C order by
  • D select into
Correct Answer

Explanation

Justification:

  1. The select forUpdate command indicates that the table buffer will alter the contents of the table and is typically used for inserting or deleting records, not simply reading them.
  2. The “select” keyword is used to retrieve and read records.
  3. Order by is not used to read records, but rather to order the resulting records that are returned in the select statement.
  4. Select into is not used in X++ to read or retrieve records.

Related Lesson: Reading Records

No Previous Next Question

Share This Question

Challenge a friend or share with your study group.

Related MCQ Questions