- A where sampleTable.AccountNum == “1234”
- B locate sampleTable.AccountNum == “1234”
- C join sampleTable.AccountNum == “1234”
- D forUpdate sampleTable.AccountNum == “1234”
- Share this MCQ
Answer:
A
Share this MCQ
- A. Correct: A
where
clause is used to specify a condition that the update method will test as it processes each row of theSampleTable
table. - B. Incorrect: The locate clause doesn’t exist in coding for finance and operations apps.
- C. Incorrect: A
join
clause links two tables on a column that is shared by both tables. It doesn’t locate a specific record. - D. Incorrect: The
forUpdate
clause is used to specify the table, not a record that you'll be updating.
Share this MCQ