I am new to working with azure, and I moved a database that I used to work with locally via ms sql. After that, the query below returns 0 rows in azure, and 1 row in ms sql. All tables are identical and contain the same data. What could be the problem?
SELECT q.Id, q.Title
FROM Questions AS q
    JOIN TagsQuestions AS tq
        ON q.Id = tq.QuestionForeignKey
    JOIN Tags AS t
        ON t.Id = tq.TagForeignKey 
WHERE t.Name IN ('C#') AND q.Title Like '%пересечение%'
GROUP BY q.Id, q.Title
HAVING COUNT(*) = 1
