you can use a Many2many field to create a relational table structure. Here's how you can structure the ORM to achieve this:
- Define a new model: Create a new model to represent your records. This model will have a Many2many field to store the comparison values.
class MyModel(models.Model):
    _name = 'my.model'
    name = fields.Char('Name')
    comparison_values = fields.Many2many('my.model', 'comparison_table', 'record_id', 'compared_record_id', 'Comparison Values')
Create a relational table: Define a separate model to act as the relational table that will store the comparison values between records.
class ComparisonTable(models.Model):
    _name = 'comparison.table'
    record_id = fields.Many2one('my.model', 'Record')
    compared_record_id = fields.Many2one('my.model', 'Compared Record')
    value = fields.Float('Value')
n this example, comparison_values is a Many2many field in the my.model model, and it refers to the comparison.table model. This creates a separate table to store the comparison values between records.
- Usage and data entry: To store the comparison values, you can create a form view for the my.model model where users can input the comparison values for each record. You can use Odoo's form view and widgets to present and capture the data. 
- Data retrieval: To retrieve the comparison values for a specific record, you can use Odoo's ORM methods to query the comparison.table model and retrieve the corresponding values. 
record = self.env['my.model'].browse(record_id)
comparison_values = record.comparison_values
This will return the comparison values for the specified record.
Remember to update the module's XML files to include the necessary views and fields.