Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: HELP!!! PLEASE

Re: HELP!!! PLEASE

From: <rc370_at_columbia.edu>
Date: Wed, 03 Feb 1999 00:56:25 -0500
Message-ID: <36B7E508.98371859@columbia.edu>


Mike Morgan wrote:
>
> Uhh... What's the original format of the data? Are lastname and firstname
> in different columns? together in a single column? and what's the deal with
> course and section?
>
> Will I get credit on your exam for a correct answer?
>
> rc370_at_columbia.edu wrote in message <36B7ADF8.1D2F4DD6_at_columbia.edu>...
> >How do you word a query to get a person's intitial for the first name?
> >(Question is below)
> >
> >Show student roster (use the format <last name>, <first initial> in a
> >single column) for each section that Todd McDaniel teaches, Identify the
> >section using course number and section number.
> >
> >E-mail me please
> >rc370_at_columbia.edu
> >
> >Rachel

he he.... It's not an exam. it's practice for homework.

The last name and first name are in the same column.

     slname sfname

abreviations:


student last name                     student first name
slname                                sfname

course number                         course section     
cnumber                               csection


instructer last name                  instructer first name
ilname                                ifname
__________________________________________________________________

I'm trying to turn Rockerfella, John into Rockerfella, J.

This is what I have so far: what would I have to do to make the first name only display the first initial.

select cnumber, snumber, (slname||', '||sfname) from student, section, instruct
where ifname = 'Todd' and ilname = 'McDaniel';

thanks again,
Rachel Received on Tue Feb 02 1999 - 23:56:25 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US