insert into B 
select * from A where  htbh=12

解决方案 »

  1.   

    insert into b..order select * from a..order where htbh=12
      

  2.   

    insert into B.table 
    select * from A..table  where  htbh=12
      

  3.   

    insert into B.order
    select * from A..order where  htbh=12
      

  4.   

    insert into B.table 
    select * from A..table  where  htbh=12
      

  5.   

    use b
    insert into table
    select * from a..table where htbh=12
      

  6.   

    支持
    insert into B 
    select * from A where  htbh=12
      

  7.   

    建议楼主好好看看书,看看联机帮助,这是最基本的~~~insert into B库的表名
    select * from A where  htbh=12
    若你只是单想插入htbh单个字段的值
    则用insert into B库的表名(对应字段)
    select htbh from A where  htbh=12
      

  8.   

    我也支持  哈!~!~`1
    insert into B 
    select * from A where  htbh=12