Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm working on a QWV created by someone else and it's doing something I've never seen before.
The application extracts records from a database using code similar to the follow:
SELECT x,y,z
FROM TABLE_NAME TABLE_NAME
I don't understand what the repetition of the table name is doing? If I simplify it to the following code less records are extracted.
SELECT x,y,z
FROM TABLE_NAME
Can anyone shed any light on why this is the case?
Hi Michael,
I think it might be the alias name of the table name
Thanks,
Sreeman
Which database or data source?
It could be this
SELECT x,y,z
FROM DBname.TableName
Vikas