用select from
返回
是oracle就要定义个游标类型
---补充
现有test表有2个字段col1,col2
数据为
col1 col2
a 1
b 2
c 3
要用存储过程返回col1结果
create procedure p_test as
begin
select col1 from test
end
--执行过程
exec p_test
--结果
a
b
cselect bname as tablename,aname as columnname,cname as typename,amax_length as typelength
from syscolumns a inner join systables b on bobject_id=aobject_id
inner join systypes c on csystem_type_id=asystem_type_id
where bname='表名'
order by bname,acolumn_id要从系统表中查询了。
select aname as [column],bname as type
from syscolumns a,systypes b
where aid=object_id('表名') and axtype=bxtype
把“表名”替换成你要查看字段类型的表名,比如你要查看sysobjects表的各字段类型那么就是
select aname as [column],bname as type
from syscolumns a,systypes b
where aid=object_id('sysobjects') and axtype=bxtype
另外可以通过存储过程
exec sp_help 表名
来查看表各字段的信息,其中就包括字段类型。字段属于Tfield
类型它有几个类型转换属性
如
asstring
asinteger不须要断定如不雅强迫转换也可以用
try
except
来检测是否转换成功
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)