Macro Variables

Macro Variables

am 18.04.2006 17:37:44 von Thegate

Hola a todos:
Me gustaria saber si hay alguna manera de expandir una variable.

Ejemplo;

Drop table if exists myDatabase.Text;
create table myDatabase.Text (
emp char(3) not null default '',
Nom varchar(30) not null default '' ) engine myisam;
insert into myDatabase.Text (emp, nom) select emp, nom from
OtraDatabase.Text;
set @vMyTable:="Text";
select * from myDatabase.@vMyTable order by emp;

Re: Macro Variables

am 18.04.2006 18:32:19 von Thomas Bartkus

Por favor - disculpe me espanol malo.
pero
No creo que es posible usar una variable MySQL a especificar un nombre de
mesa. Tiene que formar el SQL decleracion con el nombre de mesa en la
integridad con la ayuda de un otra lengua de programacion.

I don't believe it is possible to use a MySQL variable to specify a table
name.
You would have to form the SQL statement with the table name in it's
entirety with the help of another programming language.

Thomas Bartkus

"Thegate" wrote in message
news:1145374664.355061.326310@i39g2000cwa.googlegroups.com.. .
> Hola a todos:
> Me gustaria saber si hay alguna manera de expandir una variable.
>
> Ejemplo;
>
> Drop table if exists myDatabase.Text;
> create table myDatabase.Text (
> emp char(3) not null default '',
> Nom varchar(30) not null default '' ) engine myisam;
> insert into myDatabase.Text (emp, nom) select emp, nom from
> OtraDatabase.Text;
> set @vMyTable:="Text";
> select * from myDatabase.@vMyTable order by emp;
>