I have a special case,
for example in table ta
in database A
, it stores all the products I buy
table ta(
id,
name,
price
)
in table tb
in database B
, it contain all the product that people can buy
table tb(
id,
name,
price
....
)
Can I create a view in database A
to list all the products that I haven`t bought?