gpt4 book ai didi

c# - SQL Server数据库专项查询

转载 作者:行者123 更新时间:2023-11-30 14:46:02 26 4
gpt4 key购买 nike

假设我在 SQL Server 数据库中有一个包含三列(SerialNoUserNamePassword)的表。现在,我可以使用 SQL 命令 select 读取任何数据。

但是有没有办法统计数据库表的列数呢?就我而言,我想返回“密码”列的列号,即 3。

终于成功了。发布完整答案。感谢这个很棒的社区的每个人。

最佳答案

我会推荐 information_schema.columns :

select *
from information_schema.columns c
where table_name = ? and table_schema = ?;

如果你想要 'password' 的位置,那么使用:

select ordinal_position
from information_schema.columns c
where table_name = ? and table_schema = ? and
column_name = 'password';

关于c# - SQL Server数据库专项查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50887959/

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