For example, I have the following table:
CREATE TABLE `test` (
`total_results` int(10) unsigned NOT NULL,
`num_results_as_expected` unsigned int(10) NOT NULL,
) ;
I would like to add another column to the table, without using a VIEW, to add the percent of :
(num_results_as_expected/total_results)*100
Is this possible without using a VIEW?
Clarification. I know it's possible using a select statent, but I'd like to add this in the CREATE TABLE statement, so that the column will be available to anyone who accesses the table.
Clarification 2: Is trigger the right way to do this? This will essentially store duplicate information in the column.