在sql server 7 中 执行正确:
statquery.SQL.Add('use tempdb '
                       +'if exists (select * from sysobjects '
                                  +'where id=object_id(:s)) '
                       +'begin '
                         +'use spglxt '
                         +'drop table #CxTable '
                       +'end '
                       +'else use spglxt ');
请问怎样改,使其在oracle 9i   中正确,
谢了急用