SYBASE数据库总结
判断数据库对象是否存在:if object_id('tempdb..ad185119') is not nulldrop table tempdb..ad185119go或if exists(select 1from sysobjectswhere id=object_id('dbo.load_batch')and type='P')drop procedure dbo.load_batchgo