gpt4 book ai didi

c# - 雪花 : Is there a query that will return data type as I set it when creating Table? int 到 int,不是 int 到数字?

转载 作者:行者123 更新时间:2023-12-04 12:14:35 25 4
gpt4 key购买 nike

例如

create table dbdt (
ID int,
Name varchar(255));
当我查询时:
  select * from dbName.information_schema.columns
where table_schema = 'schemaName' and table_name = 'dbdt'
结果:


COLUMN_NAME
数据类型


ID
数字

姓名
文本


我需要在查询中更改什么才能返回 INTVARCHAR(255)正如我在创建表时设置的那样?

最佳答案

据我所知,您无法获得这些值,因为它们会为将来的操作标准化,包括 get_ddl .
一种选择是转到查询历史记录以查找和解析 create 语句:

  • https://docs.snowflake.com/en/sql-reference/account-usage/query_history.html (1 年)
  • https://docs.snowflake.com/en/sql-reference/functions/query_history.html (7 天)

  • 我试图重现问题,结果为空,因为表的基础名称是全大写的:
    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
    enter image description here get_schema大写字母更宽松,但它仍然规范了类型:
    select get_ddl('table', 'dbdt')
    enter image description here

    关于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/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com