How to have one of the columns of my main Select Statement query of one table, as an output from another Select statement from another table? – Mysql
Example: I want the COL3 replaced with the Select statement form TABLE B as below in my original Select Statement of TABLE A: Select COL1, COL2, <*COL3*> from TableA; COL3 => (Select Sum(COL2) from TableB Group by COl1 and order…