In SQL,There are 2 comment syntax.
1 is
--
The other is
/* */
ex
--This is comment
/* This is comment */
But In Windows,NewLineCharacter is CrLf.
In Unix,NewLineCharacter is LF.
My question is When I Create SQL file in Windows And Run It in Unix,
whether I must not use -- comment or not.