Hi All,

If I have a long line of command which I want to continue on the next line, what combination of characters do I give at the end of the first line?

Thanks.

Re: Command to be continued on to the next line by Jens

Jens
Sun Jun 27 07:45:37 CDT 2004

use ";"

SELECT * ;
FROM tTest

Regards
Jens Schulze


"sm" <sm@discussions.microsoft.com> schrieb im Newsbeitrag
news:E30B6DFC-3E7E-4F90-9309-897AA65223A4@microsoft.com...
> Hi All,
>
> If I have a long line of command which I want to continue on the next
line, what combination of characters do I give at the end of the first line?
>
> Thanks.



Re: Command to be continued on to the next line by Anders

Anders
Sun Jun 27 06:53:58 CDT 2004

A semicolon ;

SELECT ;
col1, ;
col2 ;
FROM ;
mytable

-Anders

"sm" <sm@discussions.microsoft.com> wrote in message
news:E30B6DFC-3E7E-4F90-9309-897AA65223A4@microsoft.com...
> Hi All,
>
> If I have a long line of command which I want to continue on the next
line, what combination of characters do I give at the end of the first line?
>
> Thanks.


Re: Command to be continued on to the next line by christophe

christophe
Mon Jun 28 03:55:13 CDT 2004

Sm,

Just be carefull with comments * and && !

*this is an example ;
*on what you should not do ;
if bof()
...
endif &&and this is also not good ;
if bof()
...
endif

christophe
--
\|||/
(o o)
----ooO-(_)-Ooo-------------

¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°
º


"sm" <sm@discussions.microsoft.com> schreef in bericht
news:E30B6DFC-3E7E-4F90-9309-897AA65223A4@microsoft.com...
> Hi All,
>
> If I have a long line of command which I want to continue
on the next line, what combination of characters do I give
at the end of the first line?
>
> Thanks.