Re: Speed of data retrival

From: Niall Litchfield <niall.litchfield_at_dial.pipex.com>
Date: Wed, 29 May 2002 22:10:17 +0100
Message-ID: <3cf543bc$0$234$cc9e4d1f_at_news.dial.pipex.com>


[Quoted] [Quoted] "Daniel Morgan" <dmorgan_at_exesolutions.com> wrote in message news:3CF3A073.9957EFE2_at_exesolutions.com...
> Stjepan Brbot wrote:
>
> > What is the difference according to speed of data retrival or any other
> > aspect of execution speed if one uses more columns in SELECT
> > SQL-statement?
> >
> > Is there any difference in retrival of these two SELECT statements:
> >
> > SELECT col1,col2,col3 FROM table1 WHERE col1=4
> >
> > and
> >
> > SELECT col1,col2 FROM table1 WHERE col1=4
> >
> > --
> >
> > Stjepan Brbot
>
> Immeasureably small.

[Quoted] In general but it depends on the data

[Quoted] select title,date from films where director = 'HITCHCOCK';

[Quoted]  will be considerably faster than

[Quoted] select title,date,video_content from films where director = 'HITCHCOCK';

--
Niall Litchfield
[Quoted] Oracle DBA
Audit Commission UK
Received on Wed May 29 2002 - 23:10:17 CEST

Original text of this message