Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

diff between select single * or upto one row

Former Member
0 Kudos

Hi,

what is the difference between select single * and select upto one row.

regards

krishna

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

select single * will retrieve the first record it satisfies the where condition

salect upto will collect all the records it satisfies the where condition and gives u the first record fom group of records

Regards

7 REPLIES 7

Former Member
0 Kudos

Hi,

select single * will retrieve the first record it satisfies the where condition

salect upto will collect all the records it satisfies the where condition and gives u the first record fom group of records

Regards

Former Member
0 Kudos

According to SAP Performance course the SELECT UP TO 1 ROWS is faster than SELECT SINGLE because you are not using all the primary key fields.

select single is a construct designed to read database records with primary key. In the absence of the primary key, it might end up doing a sequential search, whereas the select up to 1 rows may assume that there is no primary key supplied and will try to find most suitable index.

The best way to find out is through sql trace or runtime analysis.

Use "select up to 1 rows" only if you are sure that all the records returned will have the same value for the field(s) you are interested in. If not, you will be reading only the first record which matches the criteria, but may be the second or the third record has the value you are looking for.

The System test result showed that the variant Single * takes less time than Up to 1 rows as there is an additional level for COUNT STOP KEY for SELECT ENDSELECT UP TO 1 ROWS.

The 'SELECT SINGLE' statement selects the first row in the database that it finds that fulfils the 'WHERE' clause If this results in multiple records then only the first one will be returned and therefore may not be unique.

Mainly: to read data from

The 'SELECT .... UP TO 1 ROWS' statement is subtly different. The database selects all of the relevant records that are defined by the WHERE clause, applies any aggregate, ordering or grouping functions to them and then returns the first record of the result set.

Mainly: to check if entries exist.

Regards.

Former Member
0 Kudos

Hi,

According to SAP Performance course the SELECT UP TO 1 ROWS is faster than SELECT SINGLE because you are not using all the primary key fields.

select single is a construct designed to read database records with primary key. In the absence of the primary key, it might end up doing a sequential search, whereas the select up to 1 rows may assume that there is no primary key supplied and will try to find most suitable index.

The best way to find out is through sql trace or runtime analysis.

Use "select up to 1 rows" only if you are sure that all the records returned will have the same value for the field(s) you are interested in. If not, you will be reading only the first record which matches the criteria, but may be the second or the third record has the value you are looking for.

The System test result showed that the variant Single * takes less time than Up to 1 rows as there is an additional level for COUNT STOP KEY for SELECT ENDSELECT UP TO 1 ROWS.

The 'SELECT SINGLE' statement selects the first row in the database that it finds that fulfils the 'WHERE' clause If this results in multiple records then only the first one will be returned and therefore may not be unique.

Mainly: to read data from

The 'SELECT .... UP TO 1 ROWS' statement is subtly different. The database selects all of the relevant records that are defined by the WHERE clause, applies any aggregate, ordering or grouping functions to them and then returns the first record of the result set.

Mainly: to check if entries exist.

Regards,

Bhaskar

Former Member
0 Kudos

Hi,

Select single * - it will check all the possible records finally displays only a record.

upto one row - it will display only the first possible record.

Thanks and Regards,

Prabakaran.S

Former Member
0 Kudos

hi murali,

The main difference is

SELECT UP TO 1 ROWS is faster than SELECT SINGLE because you are not using all the primary key fields. i.e.,

Select single * -


means----


it will check all the possible records finally displays only a record.

upto one row -


means----


it will display only the first possible record.

kindly reward me if it's ok or any issues let me know

Former Member
0 Kudos

Hi ,

If SINGLE is specified, the resulting set has a single line. If the remaining additions to the SELECT command select more than one line from the database, the first line that is found is entered into the resulting set.

And upto one row will give the first record from dataset without checking the key.

So it is faster than select single.

Reward points if you are satisfied by this answer.

Edited by: smita adkar on Jan 18, 2008 11:20 AM

Former Member
0 Kudos

Hi,

SELECT UP TO 1 ROWS is faster than SELECT SINGLE *

SELECT SINGLE * will check all the possible records and finally displays only one record.

SELECT UP TO 1 ROWS will display only the first possible record.

Thanks & Regards,

Sunanda.