Computer Science, asked by rohithkumar1636, 18 hours ago

Aditi wants to store photos of students in column photo of table stu_record, Which data type she should use for column Photo.

Answers

Answered by pragyakirti12345
0

Answer: IMAGE or VARBINARY(MAX)

Explanation:

The data type to store photos in SQL Server has been IMAGE . It is used to store the image files. Recently, Microsoft started suggesting using VARBINARY(MAX) instead of IMAGE for storing a large amount of data in a single column, as the IMAGE data type will be retired in a future version of MS SQL Server.

#SPJ3

Similar questions