Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.52 KB | None | 0 0
  1. /****** Script for SelectTopNRows command from SSMS  ******/
  2. SELECT TOP (1000) [ID]
  3.       ,[Name]
  4.       ,[CultureID]
  5.       ,[ProductGroupID]
  6.       ,[IsMultiple]
  7.       ,[SpecificationKeyName]
  8.       ,bs.[ProductGroupMapName]
  9.       ,[SummaryIndex]
  10.       ,[FilterIndex]
  11.       ,ks.[LastSeenDate]
  12.   FROM [Presentation].[Filter] as bs
  13.   left join [Kieskeurig].[Specification] as ks on ks.[KeyName] = bs.[SpecificationKeyName] and ks.[ProductGroupMapName] = bs.[ProductGroupMapName]
  14.   where bs.productgroupmapname = 'tv_led'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement