Skip to content
Advertisement

Sql Syntax to tag rows in a table where this specific criteria appears at least once or more

I am using SQL Server 2014 and I have a table (t1) which contains a list of 6 numbers in more than 25,000 rows.

Extract of t1 is given below:

I would like to write 2 Case Statements that would do the following:

  • (1) tag the rows where the last digit of any of the 6 numbers (F1 to F6) appear at least once or more as a “Yes”, (else “No”)
  • (2) give the count of all numbers (based on condition (1) above), else give a zero

This is what I am expecting as output:

I am stuck at writing the logic behind the 2 case statements. Any help would be appreciated.

Advertisement

Answer

A lateral join seems like the right approach. I would do an aggregation as part of the effort:

Here is a db<>fiddle.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement