I get the following error when running the query below:
Tables or functions 'AST_CMDB_Assoc iations' and 'AST_CMDB_Assoc iations' have the same exposed names. Use correlation names to distinguish them.
I have looked up information regarding correlation names but it just doesn't make sense to me. It's obvious I don't really know what I am doing. Can anyone help? Thanks in advance.
UPDATE AST_ComputerSys tem
SET AST_ComputerSys tem.Supported = '1'
from AST_CMDB_Associ ations, AST_ComputerSys tem, AST_AssetWarran ty
INNER JOIN AST_ComputerSys tem ON AST_ComputerSys tem.Reconciliat ion_Identity = AST_CMDB_Assoca tions.Request_I D01
INNER JOIN AST_CMDB_Associ ations ON AST_AssetWarran ty.instanceId =
AST_CMDB_Associ ations.Request_ ID02
WHERE((AST_Asse tWarranty.Expir ation_Date >Currentdate) )
Tables or functions 'AST_CMDB_Assoc iations' and 'AST_CMDB_Assoc iations' have the same exposed names. Use correlation names to distinguish them.
I have looked up information regarding correlation names but it just doesn't make sense to me. It's obvious I don't really know what I am doing. Can anyone help? Thanks in advance.
UPDATE AST_ComputerSys tem
SET AST_ComputerSys tem.Supported = '1'
from AST_CMDB_Associ ations, AST_ComputerSys tem, AST_AssetWarran ty
INNER JOIN AST_ComputerSys tem ON AST_ComputerSys tem.Reconciliat ion_Identity = AST_CMDB_Assoca tions.Request_I D01
INNER JOIN AST_CMDB_Associ ations ON AST_AssetWarran ty.instanceId =
AST_CMDB_Associ ations.Request_ ID02
WHERE((AST_Asse tWarranty.Expir ation_Date >Currentdate) )
Comment