У меня есть две таблицы (tbl_ref и tbl_district):
##
mysql> tbl_ref;
+-----+-------+
| idx | ref |
+-----+-------+
| 1 | Dist |
| 2 | City |
##
mysql> tbl_district;
+-----+-----+------------+
| idy | idx | nmdistrict |
+------+-----+------------+
| 1 | 2 | District01 |
| 2 | 1 | District02 |
##
mysql> tbl_combine;
+-----------------+
| combine |
+-----------------+
| City District01 |
| Dist District02 |
Как создать триггер на столбце объединения из двух таблиц? :)