Update field with other fields data minus one day

Ask a Question related to Microsoft SQL / MS SQL Server, Design and Development.

  1. #1

    Default Update field with other fields data minus one day

    Hi

    I really don't know how to go about this in a relational database.

    There is data thats downloaded from the net everyday. The data includes a
    opening price of stock. What I need in the database is to update the today's
    opening price with yesterday's closing price.

    eg
    Instrument, Date, Opening price, Closing Price
    ABI 20021028 <Null> 4499
    ABI 20021029 <Null> 4410

    The opening price for 20021029 should be 4499

    Any ideas
    Many thanks
    Chris


    chris Guest

  2. Similar Questions and Discussions

    1. Calculating field - minus??
      Hi, OK I have a form created in Acrobat 8 Pro with all the fields set as they should be and some fields calculate the value of others by (plus +)...
    2. Comparing current field data with last entry for field
      Hi. I have a form that is inserting sales data on a daily basis. I have a field named "RoundTOTAL" which is the total sales for the day rounded to...
    3. Illustrator CS minus back and minus front
      How come there is a minus back option on the Pathfinder Palette, but no Minus Front??????
    4. Automatically update a field when another field is entered.
      I am trying to create a field in a form that will be automatically populated when another field is entered. I have facility names with related ID...
    5. Autonumber field does not update immediately after entering data
      The autonumber field does not update immediately upon entering data into a field. For instance, I can enter part of a Date in a date field or...
  3. #2

    Default Re: Update field with other fields data minus one day

    Assuming that there is a Primary Key on (Instrument, date)

    UPDATE myTable
    SET OpeningPrice = (SELECT ClosingPrice FROM MyTable t2
    WHERE t2.date = myTable.date -1 AND t2.Instrument = myTable.Instrument)

    Or if you don't have prices for everyday, get the price for the last day for
    which there is one:
    UPDATE myTable
    SET OpeningPrice = (SELECT TOP 1 ClosingPrice FROM MyTable t2
    WHERE t2.date < myTable.date AND t2.Instrument = myTable.Instrument
    ORDER BY t2.date DESC)

    --
    Jacco Schalkwijk MCDBA, MCSD, MCSE
    Database Administrator
    Eurostop Ltd.


    "chris" <chris@nutcracker.co.za> wrote in message
    news:O57rE#tRDHA.3700@tk2msftngp13.phx.gbl...
    > Hi
    >
    > I really don't know how to go about this in a relational database.
    >
    > There is data thats downloaded from the net everyday. The data includes a
    > opening price of stock. What I need in the database is to update the
    today's
    > opening price with yesterday's closing price.
    >
    > eg
    > Instrument, Date, Opening price, Closing Price
    > ABI 20021028 <Null> 4499
    > ABI 20021029 <Null> 4410
    >
    > The opening price for 20021029 should be 4499
    >
    > Any ideas
    > Many thanks
    > Chris
    >
    >

    Jacco Schalkwijk Guest

  4. #3

    Default Re: Update field with other fields data minus one day

    UPDATE StockTable
    SET OpeningPrice = (
    SELECT TOP 1 ClosingPrice
    FROM StockTable S
    WHERE S.Instrument = StockTable.Instrument
    AND S.Date < StockTable.Date
    ORDER BY S.Date DESC)


    "chris" <chris@nutcracker.co.za> wrote in message
    news:O57rE#tRDHA.3700@tk2msftngp13.phx.gbl...
    > Hi
    >
    > I really don't know how to go about this in a relational database.
    >
    > There is data thats downloaded from the net everyday. The data includes a
    > opening price of stock. What I need in the database is to update the
    today's
    > opening price with yesterday's closing price.
    >
    > eg
    > Instrument, Date, Opening price, Closing Price
    > ABI 20021028 <Null> 4499
    > ABI 20021029 <Null> 4410
    >
    > The opening price for 20021029 should be 4499
    >
    > Any ideas
    > Many thanks
    > Chris
    >
    >

    Stefan Gustafsson Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139