I never remember if a system T-SQL function, with no parameters, requires parenthesis, so I wonder if there is a reason.
For example: CURRENT_TIMESTAMP is a function that doesn’t require parenthesis, while SCOPE_IDENTITY() requires them.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think the differences are due to whether the function is a part of the ansi sql standard (which current_timestamp is) or whether it is a sql server function.