Hi, I'm trying to do an update query but I'm getting something wrong
Table1(ID, Name, TypeID, Count, TypeACount, TypeBCount)
Table2(TypeID, TypeName)
update Table1
set TypeACount = Count
where TypeID in (select TypeID
from Table2
where TypeName like "*Type A*")
I want to put the value...