I create a sql select query for an access database and get a circular link error because my alias name matches the column name in my expression. Here is a snippet of my request:
switch([CULET]='N','NONE', [CULET]='S', 'SMALL',[CULET]='VS','VERY SMALL', [CULET]='SL',' ',[CULET]='MD',' ') AS [Culet]
This particular alias name is part of the release requirements. Is there any way around this without changing the alias?
TIA
source
share