Not quite sure what these are to be honest. I am looking at someone else's SQL query
and they have SELECT
statements which look like this:
SELECT
Something,
Something
FROM
MyTable(DEFAULT, DEFAULT, DEFAULT)
And Another which looks like this:
SELECT
Something,
Something
FROM
MyTable(NULL)
Christ, when I do a SELECT
statement, I only put the table name there and that's it.
Could someone please tell me what the (DEFAULT, DEFAULT, DEFAULT)
would be used for? and also the (NULL)
- I'm sure there are many more of these once I know what they are.
My apologies if this is a duplicate question, but I couldn't seem to find an answer anywhere.
Thanks! Mike