如何像mysql一样通过information_schema.columns查询到表的元数据?

select column_name
from information_schema.columns
where table_schema = 'schema_name'
and table_name = 'table_name'
请先 登录 后评论

1 个回答

Boye
请先 登录 后评论
  • 1 关注
  • 0 收藏,267 浏览
  • six 提出于 2023-12-11 20:16