两表需要联系,还要根据两表之中一个字段来读取另一张表中的数据
答案:2 悬赏:70 手机版
解决时间 2021-01-03 06:43
- 提问者网友:無理詩人
- 2021-01-03 03:43
是用sql语句写的
最佳答案
- 五星知识达人网友:冷風如刀
- 2021-01-03 04:32
select a.*,b.* from tb1 a left join tb2 b on a.关联字段=b.关联字段
[where a.xxxxx[ and b.xxxxx]...]
[]内为可选条件
[where a.xxxxx[ and b.xxxxx]...]
[]内为可选条件
全部回答
- 1楼网友:千杯敬自由
- 2021-01-03 04:37
select filename from fileinfo where fileid = 4 --查询出来的结果是'我的文档'
-现在我要取‘我’
select substring(filename,1,1) from dbo.fileinfo where fileid = 4
-取'的'
select substring(filename,2,1) from dbo.fileinfo where fileid = 4
-取'文'
select substring(filename,3,1) from dbo.fileinfo where fileid = 4
-取'档'
select substring(filename,4,1) from dbo.fileinfo where fileid = 4
substring(列名,开始位置,取几位)
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯