gpt4 book ai didi

SQL: 在 SQL 表中查找第一行第一列

转载 作者:行者123 更新时间:2023-12-05 08:02:44 25 4
gpt4 key购买 nike

我有一个数据库表 UserTable

CREATE TABLE [UserTable](
[ID] [int] NULL,
[Name] [nvarchar](50) NULL,
[City] [nvarchar](50) NULL
) ON [PRIMARY]

此表有以下数据

ID             Name                     City----------- --------------------------------1             Vijendra                  Delhi2             Singh                     Noida3             Shakya                    New Delhi

Now question there is any way to find out the first column first row without specify the column name(I don't want to use any column name), this is same like to find out the matrix notation, that would be the [1,1]th location.

I can find out the first column first row with

Select Top 1 City from UserTable 

我不想使用列名(城市)。

这可能吗?如果是,请告诉我我们如何才能实现这一目标。

最佳答案

通常,关系数据库没有用户在给定查询中未指定的行或列排序的概念。

关于SQL: 在 SQL 表中查找第一行第一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3950269/

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