Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
T-SQL 構文で、テーブルに特定の値に一致する列を持つ行があるかどうかを確認するにはどうすればよいですか? 私は SQL Server 2012 を使用していますが、まったくの初心者です。
どんな助けでも大歓迎です。
IF EXISTS (SELECT * FROM TABLE WHERE [column] = 'column_value') -- The value 'column_value' was found in column [column]
IF
EXISTS
SELECT