本文介绍了如何使用select查询获取输出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 表格如下(Tablename Batch) Bthid Facid 1 1,4,6 2 5,9,11 3 4 4 11 数据类型如下 Bthid bigint Facid varchar(40) 查询如下 选择 Bthid 来自 bthfac 其中 Facid = ' 4' 当我按以下方式运行上述查询输出时 Bthid 3 但我希望输出如下 Bthid 1 3 因为Facid 4也出现在上表中的Bthid 1中Batch 解决方案 Table as follows(Tablename Batch)Bthid Facid 1 1,4,6 2 5,9,11 3 4 4 11 Datatype as followsBthid bigintFacid varchar(40) Query as followsselect Bthid from bthfac where Facid = '4' When i run the above query output as follows Bthid 3 But i want the output as follows Bthid 1 3 Because Facid 4 is also there in the Bthid 1 in the above table Batch 解决方案 这篇关于如何使用select查询获取输出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-15 18:16