2006 Oct 05 10:17 AM
Hi
Please tell me when to use SELECT SINGLE and when to use SELECT UP TO one rows?
I don't want any theoritical answer but the practical and technical explanation.
Thank You
Hi
Please tell me when to use SELECT SINGLE and when to use SELECT UP TO one rows?
I don't want any theoritical answer but the practical and technical explanation.
Thank You
2006 Oct 05 10:20 AM
Hi subhash,
1. For practical purpose, there is no difference.
2. I would personaly prefer
select SINGLE
(Bcos UPTO 1 Rows does not make sense,
moreover, select single is easy to read,
and less confusing)
regards,
amit m.
2006 Oct 05 10:20 AM
The best way to find out is through sql trace or runtime analysis.
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.
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 '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.
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.
Best Regards,
Vibha Deshmukh
*Plz mark useful answers
2006 Oct 05 10:21 AM
Hi Subhash,
Pls refer this thread for a good example :
http://www.sap-basis-abap.com/abap/difference-between-select-single-and-up-to-1-row.htm
Best regards,
Prashant
Pls. mark points for helpful answers
2006 Oct 05 10:24 AM
In select single u will have to give all the key fields match
where as in select upto 1 row will fetch u the first record based on condition if not it does not give u a record
Regards
- Gopi
2006 Oct 05 10:24 AM
Please check out these links they should be what you are looking for.
The FAQ's have good answers
2006 Oct 05 10:27 AM
Hi,
One more small difference is,
In <b>SELECT SINGLE</b> if u dont write any where condition it wil fetch data 10msec compare to <b>SELECT upto 1 row.</b>
If u mension <b>where</b> condition in select sigle it is more faster than select upto 1 row.
Regards,
Pradhan.
2006 Oct 05 10:29 AM
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.
Difference is select upto 1 row will select all the records in that condition and then does some grouping or sorting and then outputs the record. Takes more time.
But select single selects the forst row which meets that condition and gives the result.
For more details check blogs there is an article.
Keyword Performance tuning
Regards
2006 Oct 06 12:07 PM
Hi Soni,
Select single only will give the better performance and also one thing u need to remember that If you are using select sinle You have give the full primary key(mention all key fields) in the where condition.
Regards,
Vasantha Gutta.
2006 Oct 06 12:53 PM
Hi Subhash,
If you have got answers to your query you need to mark useful answers and close the thread.
Best Regards,
Vibha Deshmukh
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |