I have table in MySQL where the data are strored like :
table_1
+-------+-------+
|field_0|field_1|
+-------+-------+
| WCON | A |
+-------+-------+
| KROGR | B |
+-------+-------+
| | C |
+-------+-------+
| HALL | D |
+-------+-------+
| OZARK | E |
+-------+-------+
| | F |
+-------+-------+
| MAR | G |
+-------+-------+
| KROGR | H |
+-------+-------+
| MAR | I |
+-------+-------+
there are some field with empty value in field_0.
my code runs in php. there is a dropdown menu where all the field names are put manually and the values in the menu are " all | WCON | KROGR | HALL | OZARK |MAR ". From the dropdown menu if "MAR" is selected it will show G and I, but when "all" is selected it need to show all values of field_1.
My code is like that
$field_value = "MAR";
$query = "select field_1 from table_1 where field_0 = '$field_value ' ";
but how can i select all values using the $field_value variable ??