↧
Answer by kevinnwhat for MySQL - Column value depends on values from two...
With my original design, this view is simple to implement and it performs well. But if I get rid of the column TableB.price, how would I implement this viewcreate table TableA (id int,v_time date,price...
View ArticleAnswer by Tully Clark for MySQL - Column value depends on values from two...
The simplest set up is probably something like this:Table A-----------------------------| *id | time | price | -----------------------------Table...
View ArticleMySQL - Column value depends on values from two different tables
I have a MySQL database that contains these tables (* denotes primary key):TableA:----------------------------------------------| *id | time | price | special_price...
View Article