如何从一张表中取出数据插入到另一张表中

怎么从一张表中取出数据插入到另一张表中。
update hdzx_question set c_qusType=1 where c_deptId =52;
select * from [dbo].[BECBoardMessage] where Prop1='zx';

现在需要从[dbo].[BECBoardMessage]表中查询出Prop1='zx'的所有数据,以此来更新hdzx_question表中的c_qusType,使
c_qusType=1

还请大神指点一二
------解决方案--------------------
update hdzx_question set c_qusType=1 where c_deptId =52 
 and xxx in (
select tt.xxx from [dbo].[BECBoardMessage] tt where Prop1='zx'
)
//xxx是关联的字段