在指定行中插入数据?
如何在指定行中插入数据。   
 ID      Name   Type   Img 
 1         aa            b         null 
 2         bb            b         null   
 Img字段为空,我想在指定的ID   上插入Img字段内的内容。 
 请问该怎么写?
------解决方案--------------------如何在指定行中插入数据。   
 ID  Name Type Img 
 1   aa    b   null 
 2   bb    b   null   
 Img字段为空,我想在指定的ID 上插入Img字段内的内容。 
 请问该怎么写?   
 update 表 
 set img = content 
 where .................