Irxn: Treffer in beliebiger Spalte

Beitrag lesen

Hallo

SELECT id FROM $table WHERE text LIKE 'hallo'

geht nicht aber dafür

select t1.id, t2.id from $table1 t1, $table2 t2 where t1.text like 'hallo' and t2.name like 'hallo';

Ich hoffe, das ist das was du brauchst

MFG Irxn