straatlang
Technical User
I have two tables :
Articles
ID Name
123 AAA
456 BBB
789 CCC
888 DDD
Prices
ID Price
123 10
456 20
789 30
999 40
The query should result in a list where all information that is available
is visiable. SO infact in need to combine these two tabels.
ID Name Price
123 AAA 10
456 BBB 20
789 CCC 30
888 DDD
999 40
Does anyone knows if this possible with SQL.
Articles
ID Name
123 AAA
456 BBB
789 CCC
888 DDD
Prices
ID Price
123 10
456 20
789 30
999 40
The query should result in a list where all information that is available
is visiable. SO infact in need to combine these two tabels.
ID Name Price
123 AAA 10
456 BBB 20
789 CCC 30
888 DDD
999 40
Does anyone knows if this possible with SQL.