Re: Calculating fields
Two possibilities:
1) Calculate the points as the data is stored in the table - for that you'll need a trigger that fires on an insert, do the calculation in that trigger and store the result. This is a good option of the formula never [ever] changes.
2) Calculate the points as the data is retrieved - for that you'll want a view that includes a calculated column that derives the points based on other values in the row.
Which option you go for is entirely up to you (and whether you can translate Excel-ese into MySQL's DML syntax!).
Regards, Phill W.
Subject
Views
Written By
Posted
2366
March 09, 2012 12:40AM
1391
March 09, 2012 01:40AM
1371
March 09, 2012 10:55AM
1313
March 09, 2012 11:15AM
1425
March 10, 2012 10:07PM
1405
March 09, 2012 12:08PM
1306
March 10, 2012 09:58PM
1262
March 10, 2012 10:18PM
1381
March 11, 2012 02:27AM
1459
March 11, 2012 10:50AM
Re: Calculating fields
1340
March 09, 2012 07:42AM
1363
March 11, 2012 12:27PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.