I have 2 textBox (textBox1 and textBox2), the query I want is this:
The production_line
would be the textBox2
and the item_number
is the textBox1
select * from tbl_volumen2 where production_line ='L1B4' AND item_number ='VPJG7F-10849-BD'
When making this query I would like you to show me all the data that exists in my table tbl_volumen2
in a dataGridView
that I have in a Windows Form in C #