- A select forUpdate
- B select
- C order by
- D select into
- Share this MCQ
Answer:
B
Share this MCQ
Justification:
- 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.
- The “select” keyword is used to retrieve and read records.
- Order by is not used to read records, but rather to order the resulting records that are returned in the select statement.
- Select into is not used in X++ to read or retrieve records.
Related Lesson: Reading Records
Click me to Read more Question & Answer of Module 14: Database ManipulationShare this MCQ