SQL Server har inte en riktig boolesk datatyp och stöder därför inte booleska uttryck som cast ( tline as int) > 6
Du måste skriva om det till en fallbeskrivning:
case when cast ( tline as int) > 6 then 1 else 0 end as tv
SQL Server har inte en riktig boolesk datatyp och stöder därför inte booleska uttryck som cast ( tline as int) > 6
Du måste skriva om det till en fallbeskrivning:
case when cast ( tline as int) > 6 then 1 else 0 end as tv