http://qs321.pair.com?node_id=168220


in reply to Re: Re: Calling SQL with embedded quotes
in thread Calling SQL with embedded quotes

The reason the FROM is optional is that you can do the following in Transact-SQL:
delete mytable from mytable m, theirtable t where m.somevalule = t.somevalue and ...
The same syntax can be used for UPDATE. Very nice for doing set based operations.

Michael