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