Hello
Is it possible to make one select query of the queries below?
$q= "SELECT (column3) FROM table WHERE column2 = 'value1'";
$q= "SELECT (column3) FROM table WHERE column2 = 'value5'";
Actually I want to put an array (column2) in the select query and get the related values from column3.