如何在sybase中找到函数的return类型?

How to find the return type of a function in sybase?

如何找到函数的 return 类型,例如 getdate()?我想这是一个日期时间,但我怎么知道的?

除了看说明书,你还可以做以下事情:

select getdate() as d into datatype_debug
go
sp_help datatype_debug
go