我有两张桌子A和B
A has aid, bid, aname columns
B has bid, bname columns
我想从 A 中删除一行
IEdelete from A where bid = (select bid from b where bname like '%Mass%' )
如何在 Android 中编写查询。
我可以做的一件事是select bid from b where bname like '%Mass%'
单独执行并将 id 存储在变量中并运行类数据库的删除方法。
有没有其他简单的方法。