如何选择有效的SQL Server数据类型?

时间:2022-08-08 16:59:09

I'm looking for a way to select every valid SQL Server datatypes to load a combobox with that values, but I don't know where I can select it values.

我正在寻找一种方法来选择每个有效的SQL Server数据类型来加载具有该值的组合框,但我不知道在哪里可以选择它的值。

An example for what I want to do is this:

我想做的一个例子是:

如何选择有效的SQL Server数据类型?

Img Link: http://puu.sh/m4VpV/65bcb8dca6.png

Img链接:http://puu.sh/m4VpV/65bcb8dca6.png

Thanks for your help.

谢谢你的帮助。

1 个解决方案

#1


4  

Use SYS.TYPES system view

使用SYS.TYPES系统视图

select name 
from sys.types
where is_user_defined = 0 -- SQL Server system data type.

#1


4  

Use SYS.TYPES system view

使用SYS.TYPES系统视图

select name 
from sys.types
where is_user_defined = 0 -- SQL Server system data type.