Hallo Leute,

in Oracle kann man Indizes in einer Abfrage abschalten(Full-Table-Scan). Mit +0 oder 
||''.
z.B.:

SELECT *
FROM tabelle
WHERE eigenschaft||'' = 'text';

SELECT *
FROM tabelle
WHERE id+0 = 1;


Geht das bei mySQL auch?

Reply via email to