6 lines
130 B
SQL
6 lines
130 B
SQL
select *
|
|
from Product
|
|
Where ProductID in (select ProductID
|
|
from History
|
|
where UserID=1);
|