I have the following structure for a table name check_phone what i want to select the column name from table where specific field (company) of table is equal to 468
calling_nmbr ' called_nmbr'call_type'site_area'company'province'district'region 'called_ims
779876542 ' +9370098765' 12 ' 112 ' 77 ' 12 ' 34 ' NULL ' NULL
+93799543534 ' +9378843543' missed ' Kabul ' 98 ' London ' NULL ' 0234 ' NULL
+93773454654 '+0379923432' NULL ' NULL ' 77 ' Herat ' NULL ' NULL ' 233
+93799435435 ' NULL ' NULL ' XY ' 98 ' NULL' NULL ' 945 'NULL
Note: company field has always data which is the code of company. Some company has distinct field that is not existed for other company but at least all of company has some common field so what i want to get is the name of common fields.
I want to has MySQL equivalent intersect operator between selection of first company columns name and the second company columns name.