I am trying to create a calculation logic using MySQL tables. Data from two table is processed using a stored procedure and a set of values is generated. These values are part of a column of output table. I have to run different procedure to generate output for each column in output table
Now if I create insert query for each row it will have large number of inserts for each column. Can I insert a set of values into a table column in one go? assuming other columns can be NULL.