MySQL: ERROR 1292 (22007): Truncated incorrect DOUBLE value: 'col1', computed virtual column insert
I have this table: create table TableName5 ( col1 varchar(200), col2 varchar(200), col3 varchar(200) generated always as ('col1' + 'col2') stored ); The col3 is supposed to be a computed column - the value in col1 plus the value in…