数据库知识
Posted 袁言yan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库知识相关的知识,希望对你有一定的参考价值。
ISNUMERIC(字段):判断当前字段是否是数字 当返回值等于1 说明是数字 ,当返回值等于0,说明是非数字
查看所有用户自己建立的表
select name from sysobjects where type=‘U‘
Select name from syscolumns Where ID=OBJECT_ID(‘表名‘)
查看表信息
select * from information_schema.tables
查看视图信息
select * from information_schema.views
查看列信息
select * from information_schema.columns
查看扩展属性
select * from sys.extended_properties
以上是关于数据库知识的主要内容,如果未能解决你的问题,请参考以下文章