Hello everyone, I am new to this forum. I have a simple SQL question I would like answered if possible.
I have a MySQL table with three columns. I know the values of the first two columns in one row, how do I find out the third column’s value?
-Thank You,
Tex.
Your query will look similar to this (use the real names of your table and fields):
select Field3 from MyTable where Field1='value1' and Field2='value2'
Wow I am an idiot how could I have missed something that obvious? ;D