I am trying to make a searchable interface, and my backend includes three MySQL database tables:
tbl_country
mysql> select * from tbl_country;
+--------------+---------------+
| country_code | country |
+--------------+---------------+
| AFG | AFGHANISTAN |
| AUS | AUSTRALIA |
| CAN | CANADA |
| GBR | GREAT BRITAIN |
| IND | INDIA |
| USA | USA |
+--------------+---------------+
6 rows in set (0.00 sec)
tbl_state
mysql> select * from tbl_state;
+----------+------------------+--------------+
| state_id | state | country_code |
+----------+------------------+--------------+
| 1 | Maharashtra | IND |
| 2 | Delhi | IND |
| 3 | West Bengali | IND |
............
| 51 | Queensland | AUS |
+----------+------------------+--------------+
33 rows in set (0.00 sec)
tbl_city
mysql> select * from tbl_city;
+---------+----------+--------------------+
| city_id | state_id | city |
+---------+----------+--------------------+
| 1 | 1 | Mumbai (Bombay) |
| 2 | 1 | Nagpur |
.......
| 84 | 37 | Edinburgh |
| 122 | 44 | Cardiff |
| 127 | 46 | Melbourne |
| 130 | 48 | Perth |
| 131 | 49 | Adelaide |
| 132 | 50 | Canberra |
| 133 | 51 | Brisbane |
| 134 | 51 | Gold Coast |
+---------+----------+--------------------+
54 rows in set (0.00 sec)
I have my schema and MySQL database values as shown here in SQL Fiddle
My search should get one interface, from where I can search the whole Country based on the data of the city or state.
I am trying to use this query which correctly gives the result I want to extract:
SELECT
c.country_code, c.country,
CAST(GROUP_CONCAT(s.state SEPARATOR ',') AS CHAR) as state,
CAST(GROUP_CONCAT(ct.city SEPARATOR ',') AS CHAR) as city
FROM tbl_country c
LEFT JOIN tbl_state s ON s.country_code = c.country_code
LEFT JOIN tbl_city ct ON ct.state_id = s.state_id
GROUP BY (c.country_code);
Datatable , , , , datatable PHP- , .
datatable, , :

:
SELECT sql_calc_found_rows `c`.`country_code`,
`c`.`country`,
group_concat(`s`.`state` separator "," ) AS state,
group_concat(`ct`.`city` separator ",") AS city
FROM `tbl_country` AS `c`
LEFT JOIN `tbl_state` AS `s`
ON (
`s`.`country_code` = `c`.`country_code`)
LEFT JOIN `tbl_city` AS`ct`
ON `ct`.`state_id` = `s`.`state_id`
WHERE (
`c`.`country_code` LIKE :binding_0
OR `c`.`country` LIKE :binding_1
OR group_concat(`s`.`state` separator ",") LIKE :binding_2
OR group_concat(`ct`.`city` separator ",") LIKE :binding_3)
GROUP BY `c`.`country_code`
ORDER BY `c`.`country_code` ASC limit 0,
10
, :

, / , PHP datatable plugin. , !