1、数据别名的类型是否正确?
2、如果是sql server ,时候装了SQL SERVER 客户端?
3、可以使用ADO。

解决方案 »

  1.   

    select * into card_detal_bak from card_detal where card_detal.card_number=:card_number建议你没把握的SQL语句,在SQL Explorer里测试通过后,再写进来
      

  2.   

    在TQuery里不支持select .. into语句。应该用insert into ...select ...
      

  3.   

    qrySBGL.SQL.Add('insert into bsbxx select * from tsbxx a where a.sbbh='''+BHXZ+'''');我自己的源代码。:)
      
      

  4.   

    to clacklin(海风):在TQuery里不支持select .. into语句???胡说。支持不支持一种sql语法与query无关,和数据库驱动才有关,paradox不支持select into...from...where语法
      

  5.   

    呵呵呵,具体的说,是BDE不支持。wangxd1976(西门吹雪) ,你真用过???