Jump to content

[SOLVED] Merging two tables in mysql query !


coool

Recommended Posts

Hi :)

 

let's say I have two database tables

 

FruitsTable

Id..........name..........color

13..........a..................green

25..........k..................yellow

32..........o..................red

 

VegetablesTable

Id..........name..........color

13..........d..................green

25..........g..................white

32...........l..................red

 

now can I do that ?

 

<?php

$fields="Id,name";
$tables="FruitsTable,VegetablesTabes";
$conditions="color in 'green,red'";

$sql="SELECT $fields FROM $tables WHERE $conditions";
?>

 

error: Id is ambiguous !!   ???

Link to comment
https://forums.phpfreaks.com/topic/60401-solved-merging-two-tables-in-mysql-query/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.