A
Anonymous
Guest
I need to insert some data into 2 tables at the same time :
$q="insert into table_A (Data1, Data2) values ('$Data1', '$Data2')";
$q="insert into table_B (Data2, Data3) values ('$Data2', '$Data3)";
What should be the right querry ?
The same question but for DELETE.
Thanks for your help,
Erick.
$q="insert into table_A (Data1, Data2) values ('$Data1', '$Data2')";
$q="insert into table_B (Data2, Data3) values ('$Data2', '$Data3)";
What should be the right querry ?
The same question but for DELETE.
Thanks for your help,
Erick.