Je pensais que c'était synonyme, mais j'ai écrit ce qui suit dans Microsoft SQL:
Select Unique col from
(select col from table1 union select col from table2) alias
Et cela a échoué. Le changer en
Select Distinct col from
(select col from table1 union select col from table2) alias
réparé. Quelqu'un peut-il expliquer?