SQL Server には実際のブール データ型がないため、 cast ( tline as int) > 6
のようなブール式をサポートしていません
これを case ステートメントに書き直す必要があります:
case when cast ( tline as int) > 6 then 1 else 0 end as tv
SQL Server には実際のブール データ型がないため、 cast ( tline as int) > 6
のようなブール式をサポートしていません
これを case ステートメントに書き直す必要があります:
case when cast ( tline as int) > 6 then 1 else 0 end as tv