select orderID as orderID,'大额定单' as cashnum into t_money from t_order where money>50

解决方案 »

  1.   

    insert into t_money(orderID ,cashNum) select orderID ,'大额定单' from t_order where money>50
      

  2.   

    select orderID orderID,'大额定单' cashNum
     into t_money from t_order where money>50;
      

  3.   

    试验了smartdonkey和signboy的方法
    系统指示:Invalid column name '大额定单'
      

  4.   

    你用的是什么数据库?我猜是access吧?
    insert into t_money(orderID ,cashNum) 
    select orderID, "大额定单" 
      from t_order 
     where money>50