class checked_criteria(models.Model):
_name="checked.criteria"
soft=fields.Many2many('softandgrid','rel1','a','b',string="Soft Duplicates Fields")
When I run select * from rel1; in terminal, there are datas in a and b columns.
How can I get these data?Thank you.