Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/04/2012, 14:32
jurena
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Cáceres
Mensajes: 3.735
Antigüedad: 16 años
Puntos: 300
Respuesta: SHOW TABLES WHERE [...] excluyendo prefijo

¿Probaste de cualquiera de estas formas?
SELECT table_name FROM INFORMATION_SCHEMA.TABLES
WHERE table_name NOT LIKE 'prefix_%'

SHOW TABLES
FROM db_name
NOT LIKE 'prefix_%'