|
Take a column of View_a from Table A, a column of View_b from Table B, and a column of View_c from Table C. According to some conditions, the result of multiplying View_b and View_c is a new column NewView_bc. Now create a new view, the column names of the view are obtained from the above: View_a, View_b, NewView_bc. How to write the sql statement of the new view? |
|