Multiple choice technology databases

Choose the data type not supported by SQL Server

  1. varchar

  2. int

  3. text

  4. binary

  5. Image

Reveal answer Fill a bubble to check yourself
C,E Correct answer
Explanation

SQL Server has deprecated the legacy 'text' and 'Image' data types in favor of varchar(max) and varbinary(max). While still functional for backward compatibility, they are not recommended for new development. Varchar, int, and binary are fully supported modern types.