sybase存储过程简单示例

1.

简单的hello world

create procedure hello

as

select ‘hello world’

 

在isql里面输入:hello就可以显示hello world

2.查询某个表的存储过程:

create procedure hello

as

select top 100BLACKLIST.TEL,BLACKLIST.TYPE,BLACKLIST.CREATE_TIME,BLACKLIST.DESCRIPTION from BLACKLIST


sybase存储过程和sql server的很相似,sybase数据库的资料很少,可以参考sql server的


你可能感兴趣的:(sql,数据库,server,Sybase,存储)