Not unique table/alias
what does that error mean
query error
Moderator: General Moderators
- CoderGoblin
- DevNet Resident
- Posts: 1425
- Joined: Tue Mar 16, 2004 10:03 am
- Location: Aachen, Germany
Unless you are more specific and provide more detail (what are you doing when you the error occurs) it is difficult to help.
Three thoughts...
1) You are creating a table which already exists.
2) You are unknowingly using a reserved word for something.
3) That you are trying to put information into a table column where the column definition is set to unique. This means that any value may only appear once (Primary keys for instance).
Three thoughts...
1) You are creating a table which already exists.
2) You are unknowingly using a reserved word for something.
3) That you are trying to put information into a table column where the column definition is set to unique. This means that any value may only appear once (Primary keys for instance).