What is the reason behind not using SELECT * in Embedded SQL programs?
There are three reasons for not using SELECT * in embedded SQL programs: If you change the table structure i.e. adding a field, the program will have to be modified. Program can retrieve the columns which it might not use, leading an I/O overhead. The chance of an index only scan is lost. In Embedded … Read more