求明白人解答。
比如,我表名为student,我想得到第二行第二列的值,那select语句应该是
select * from student where....
where往后的条件怎么写?
14 个解决方案
#1
sql里只能指定列名吧
你是不是想在datagridview里查啊
绑定数据源后dataGridView1.Rows[1].Cells[1].Value //第二行第二列的值
你是不是想在datagridview里查啊
绑定数据源后dataGridView1.Rows[1].Cells[1].Value //第二行第二列的值
#2
select 第二列的名称 from tablename where 行id=xxoo
#3
select top 1 列名 from a
(select top 2 列名 from student) as a
order by 列名
desc
(select top 2 列名 from student) as a
order by 列名
desc
#4
string sql="select top 1 列名 from(select top 2 列名 from student order by id asc ) order by id desc"
#5
刚才多敲了个a 4L是正解
#6
看是什么数据库吧,如果是oracle得话:Select 列名 From tablename Where rownum =2
如果是mysql的话,Select 列名 From tablename Limit 1,1
如果是sqlServer的话,需要嵌套下Top。
#7
不好意思oracle不太熟写错了。
#8
输入 select 第二列,第三列名字 from student 这样就ok了吧
#9
--楼主说的第二个列是指不知道列名的情况下
create table test(col1 int,col5 int,col6 int)
insert into test
select 1,2,3 union all
select 4,5,6 union all
select 7,8,9
go
create proc GetValueByPos
(
@tablename varchar(50),--表名
@hang int,--行号
@lie int --列号
)
as
begin
declare @liename varchar(50)
declare @sql varchar(8000)
;with m as
(
select name,lie=row_number() over (order by getdate())
from syscolumns where id=object_id(@tablename)
)
select @liename=name from m where lie=@lie
set @sql=
'select row_number() over (order by getdate()) as hang,* into #t from '+@tablename
+char(13)+'select '+@liename+' from #t where hang='+ltrim(@hang)
+char(13)+'drop table #t'
exec(@sql)
end
exec GetValueByPos 'test',2,3
/*
col6
-----------
6
*/
#10
友情幫頂。
#11
赞同……
#12
纯SQL语句 还是 某个控件? sql 语句 直接 用 那行那列的ID指定九号了啊
#13
select语句还不会写吗
#14
楼主说的不详细,大家都是猜的
#1
sql里只能指定列名吧
你是不是想在datagridview里查啊
绑定数据源后dataGridView1.Rows[1].Cells[1].Value //第二行第二列的值
你是不是想在datagridview里查啊
绑定数据源后dataGridView1.Rows[1].Cells[1].Value //第二行第二列的值
#2
select 第二列的名称 from tablename where 行id=xxoo
#3
select top 1 列名 from a
(select top 2 列名 from student) as a
order by 列名
desc
(select top 2 列名 from student) as a
order by 列名
desc
#4
string sql="select top 1 列名 from(select top 2 列名 from student order by id asc ) order by id desc"
#5
刚才多敲了个a 4L是正解
#6
看是什么数据库吧,如果是oracle得话:Select 列名 From tablename Where rownum =2
如果是mysql的话,Select 列名 From tablename Limit 1,1
如果是sqlServer的话,需要嵌套下Top。
#7
不好意思oracle不太熟写错了。
#8
输入 select 第二列,第三列名字 from student 这样就ok了吧
#9
--楼主说的第二个列是指不知道列名的情况下
create table test(col1 int,col5 int,col6 int)
insert into test
select 1,2,3 union all
select 4,5,6 union all
select 7,8,9
go
create proc GetValueByPos
(
@tablename varchar(50),--表名
@hang int,--行号
@lie int --列号
)
as
begin
declare @liename varchar(50)
declare @sql varchar(8000)
;with m as
(
select name,lie=row_number() over (order by getdate())
from syscolumns where id=object_id(@tablename)
)
select @liename=name from m where lie=@lie
set @sql=
'select row_number() over (order by getdate()) as hang,* into #t from '+@tablename
+char(13)+'select '+@liename+' from #t where hang='+ltrim(@hang)
+char(13)+'drop table #t'
exec(@sql)
end
exec GetValueByPos 'test',2,3
/*
col6
-----------
6
*/
#10
友情幫頂。
#11
赞同……
#12
纯SQL语句 还是 某个控件? sql 语句 直接 用 那行那列的ID指定九号了啊
#13
select语句还不会写吗
#14
楼主说的不详细,大家都是猜的