In the Tag attribute of Nebula2.5.1, there is a character type field called system_version. When querying, it is necessary to compare system_version. The field is separated by commas. The following cases need to return true:
"12.2.1" <= "13.1"
"12.0.1" <= "12.1.1"
"9.3" <= "13.1.1"
Split the field by "comma", add a "0" and convert it to a number for comparison. Can anyone help me with this?