如何从SQL SERVER中的表列中仅选择部分数据

时间:2018-08-22 11:13:54

标签: sql-server sql-server-2014

我已经创建了一个SQL SERVER脚本。首先,请检查脚本

SELECT
  W.RequesterName + ' ' + +'on ' + CONVERT(varchar(20), W.Requested, 111) + ' ' + CONVERT(varchar(20), W.Requested, 108) + ' ' + (CASE
    WHEN DATEPART(HOUR, W.Requested) > 12 THEN 'PM'
    ELSE 'AM'
  END) AS 'Request Detail',
  W.TakenByName,
  W.Reason,
  CONVERT(varchar(20), W.TargetDate, 111) + '   (' + CONVERT(nvarchar(max), CAST(W.TargetHours AS float)) + ')' + ' hr' AS targetWorkDetails,
  W.PriorityDesc + '/' + W.TypeDesc AS priorityDesc,
  W.SupervisorName,
  W.ShopID,
  W.RepairCenterName,
  W.RequesterPhone,
  A.Location3Name,
  A.ParentLocation,
  A.ParentLocationAll,
  W.AssetName,
  W.AssetName + '(' + CONVERT(nvarchar(20),w.AssetID,101) + ')' AS AssetDetails

FROM WO W
INNER JOIN AssetHierarchy A
  ON W.AssetPK = A.AssetPK
WHERE w.WOPK = 10144 --INNER JOIN AssetHierarchy ON WO.AssetPK=AssetHierarchy.AssetPK   

现在请检查我的输出

enter image description here

现在,请检查突出显示的属性'ParentLocationAll'。我的任务是在
标记开始之前获取ParentLocationAll数据。例如在ParentLocationAll列中,我们的值是'Wood Buffalo
Main Building',我只想使用'Wood Buffalo'。我想再举一个例子:假设我们在“ ParentLocationAll”列中具有值“ calgery
abcd”。那么我只需要“算盘”而不是全部价值。 我努力了但无法解决这个问题。请帮我一些忙 建议。谢谢。

2 个答案:

答案 0 :(得分:2)

PATINDEXLEFT结合使用可能在这里起作用:

WITH yourTable AS (
    SELECT 'Wood Buffalo<br>Main Building' AS ParentLocationAll
)

SELECT
    LEFT(ParentLocationAll d, PATINDEX('%<%>%', ParentLocationAll) - 1) AS ParentLocation
FROM yourTable;

Wood Buffalo  <-- output

Demo

这是否在所有情况下都有效取决于您的数据。例如,如果您的父位置列包含随机的<>符号,但它们不在HTML标记的上下文中出现,那么我的解决方案可能会失败。

答案 1 :(得分:1)

严格根据下面的代码片段提供的输入数据即可完成工作-

create table #table (ParentLocationAll nvarchar(1000))
insert into #table (ParentLocationAll) select 'Wood Buffalo Main Building'
insert into #table (ParentLocationAll) select 'calgery abcd'
select 
       case when len(ParentLocationAll) - len(replace(ParentLocationAll, ' ', '')) = 1 
       then LEFT(ParentLocationAll, charindex(' ', ParentLocationAll) - 1) 
       else SubString(ParentLocationAll, 1, CharIndex(' ', ParentLocationAll, CharIndex(' ', ParentLocationAll) + 1)) end as ParentLocationAll
from #table

因此,这里的代码只是检查字符串中的空格数(''),如果计数为1,则它将提取字符串,直到找到第一个空格,否则它将找到您的第二个空格主字符串,然后提取字符串。