Tengo dos preguntas:no se puede resolver el conflicto de intercalación en la Unión seleccionar
Primero no funciona:
select hotels.TargetCode as TargetCode from hotels
union all
select DuplicatedObjects.duplicatetargetCode as TargetCode
from DuplicatedObjects where DuplicatedObjects.objectType=4
porque me sale error:
Cannot resolve collation conflict for column 1 in SELECT statement.
segunda obra:
select hotels.Code from hotels where hotels.targetcode is not null
union all
select DuplicatedObjects.duplicatetargetCode as Code
from DuplicatedObjects where DuplicatedObjects.objectType=4
Estructura:
Hotels.Code -PK nvarchar(40)
Hotels.TargetCode - nvarchar(100)
DuplicatedObjects.duplicatetargetCode PK nvarchar(100)
¿Cuál es la relevancia de C# aquí? –
@John Skeet Lo he corregido – user278618