Jump to content

Help with Updates on mu table.


ravi_doddapaneni

Recommended Posts

My Table has 4 columns.

 

Indication    Value  Start    END

0                  4

1                  3

1                  7

0                  3

1                  2

1                  7

I want to UPDATE above table START and END columns based on the following formula:

 

if Indication = 0 then START=1 and END=VALUE;

else START=(previous_row)END, END=START+VALUE;

 

The end table should like this:

Indication    Value  Start    END

0                  4          1          4

1                  3          4          7

1                  7          7        14

0                  3          1          3

1                  2          3          2

1                  7          2          9

 

Please someone help, i have been trying but could not fid a way to access previous row info.

Link to comment
https://forums.phpfreaks.com/topic/196139-help-with-updates-on-mu-table/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.