Looking for small change in mybuilder
Posted: Wed 30 Mar 2005 22:45
Whenever I do something in mybuilder addon, it generates always the SQL with the database name/table name in front of each field/table. Is there a way to setup so that it generates plain sql without putting the database name / table name in sentences ?
For example
would result in:
I have many situations where i have a database for each year, this results that SQL produced from MySQLBuilder AddOn has to be reedited everytime. Some setting to make this optional would be great 
Thx
For example
Code: Select all
SELECT
cibersms.directorio.idnumero,
cibersms.directorio.nombre,
cibersms.directorio.movilsms
FROM
cibersms.directorio
WHERE
cibersms.directorio.movilsms is not nullCode: Select all
SELECT idnumero,nombre,movilsms
FROM directorio
where movilsms is not nullThx