我有两张表,内容如下:
table 1
sid, schedule, stime, splace, stourid
table 2
tourid, tourname
我想table 1
在 GridView 中显示 ,但stourid
我希望显示的字段是tourname
fromtable 2
而不是stourid
. 我怎样才能做到这一点?
我有两张表,内容如下:
table 1
sid, schedule, stime, splace, stourid
table 2
tourid, tourname
我想table 1
在 GridView 中显示 ,但stourid
我希望显示的字段是tourname
fromtable 2
而不是stourid
. 我怎样才能做到这一点?
假设上面的 stourid 是指向表 2 的指针并映射到 tourid,我将创建一个带有 tourid/stourid 连接的视图并显示该视图。就像是:
CREATE VIEW myView
AS
SELECT sid, schedule, stime, splace, tourname
FROM
[table 1] AS t1
JOIN [table 2] AS t2
ON t1.stourid = t2.tourid
对您的数据执行以下 SQL 语句,将结果绑定到您的表并仅显示您想要显示的列。
select * from table1 join table2 on table1.tourid = table2.tourid
您可以使用Join
查询:
SELECT sid, schedule, stime, splace, tourname
FROM table1 INNER JOIN table2 ON table1.stourid = table2.tourid
使用内连接...
select t1.sid,t1.schedule,t1.stime,t1.splace,t2.tourname from table1 t1 inner join table2 t2 on t1.tourid = t2.tourid
SELECT sid, schedule, stime, splace, tourname FROM table1 交叉连接表2