だから私は声明を持っています:
$r = mysql_query("Select type from boats where type like '%speed%'");
構築されたリソースを別のクエリに適用できますか?
$r2 = mysql_query("select * from assets where type in ".$r);
私は似たようなことをしようとしています
select * from assets where type in (select type from boats where type like '%speed%')