InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between 'select Single * ' And 'select Upto 1 Rows'? |
|
Answer» Select single *- It can WORK on the work area not on the INTERNAL table. It has no endselect. Select * upto 1 ROWS- It can be IMPLEMENTED in Internal table and work area both. It has endselect. Select single *- It can work on the work area not on the internal table. It has no endselect. Select * upto 1 rows- It can be implemented in Internal table and work area both. It has endselect. |
|