After more than three decades of front-end development for relational databases, I still consider storing combined data in a table field to be a serious design flaw.
Even though databases can now handle XML and JSON internally, I still find it annoying and poor design.
It may make sense in very special cases, but I don't know of any so far, which doesn't mean that there aren't any.
To simply store a record, just use a table like this.
CREATE TABLE `TheTable` (
`TABLEID` INT NOT NULL AUTO_INCREMENT,
`Version ` VARCHAR(50) NOT NULL DEFAULT '0',
`TheDate ` DATE NOT NULL DEFAULT '0',
`jed ` VARCHAR(50) NOT NULL DEFAULT '0',
`rr ` FLOAT NOT NULL DEFAULT 0,
PRIMARY KEY (`TABLEID`)
)
COLLATE='utf8mb4_general_ci'
;