作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如
create table dbdt (
ID int,
Name varchar(255));
当我查询时:
select * from dbName.information_schema.columns
where table_schema = 'schemaName' and table_name = 'dbdt'
结果:
INT
和
VARCHAR(255)
正如我在创建表时设置的那样?
最佳答案
据我所知,您无法获得这些值,因为它们会为将来的操作标准化,包括 get_ddl
.
一种选择是转到查询历史记录以查找和解析 create 语句:
select * from information_schema.columns where table_name = 'DBDT'
数据类型也已规范化:
select column_name, ordinal_position, data_type, character_maximum_length, numeric_precision
from information_schema.columns
where table_name = 'DBDT
get_schema
大写字母更宽松,但它仍然规范了类型:
select get_ddl('table', 'dbdt')
关于c# - 雪花 : Is there a query that will return data type as I set it when creating Table? int 到 int,不是 int 到数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69578636/
我是一名优秀的程序员,十分优秀!