Declare @quote1 varchar(max) ,@quote2 varchar(max) ,@quote3 varchar(max) SET @quote1 = 'Data affecting the version store' -- QOTD Answer;SET @quote2 = '"Inserts" into the version store' -- QOTD Answer explination;SET @quote3 = '“insert” into the Append-Only store' -- QOTD Answer refernece;SELECT 'X' where @quote1 = @quote2unionSELECT 'X' where @quote2 = @quote3unionSELECT 'X' where @quote1 = @quote3;