Hi !
I'm new to Odoo 13 and Python so everything is a bit confusing at the moment.
My problem is that I need to do a request like "SELECT ... FROM ... WHERE ...", but I don't understand how I should do it here.
I have the first part which looks like that "self.env['my.table'].search([('the_this_i_want')])".
I would like to add something like "self.env['my.table'].search([('the_thing_i_want')]).where([('id','=',self.id)])".
Thanks.