e.g.:
I have two tables, one is "fruit", the other is "drink"
"fruit" has the following data structure:
name price
apple 0.8
orange 1.0
grape 0.99
"drink" has the following data structure:
name price
water 1.00
milk 2.00
jiuce 1.50
I want to join these two tables into one table named "fruitdrink" like this:
name price
apple 0.8
orange 1.0
grape 0.99
water 1.00
milk 2.00
jiuce 1.50
How can I use SELECT and JOIN to CREATE a "fruitdrink"
table in Active Server Pages?
I'll appreciate your reply. Thanks !
I have two tables, one is "fruit", the other is "drink"
"fruit" has the following data structure:
name price
apple 0.8
orange 1.0
grape 0.99
"drink" has the following data structure:
name price
water 1.00
milk 2.00
jiuce 1.50
I want to join these two tables into one table named "fruitdrink" like this:
name price
apple 0.8
orange 1.0
grape 0.99
water 1.00
milk 2.00
jiuce 1.50
How can I use SELECT and JOIN to CREATE a "fruitdrink"
table in Active Server Pages?
I'll appreciate your reply. Thanks !