Good News Everybody!
The new search engine is LIVE!
Please report any problems to david (at) midrange.com.
|
USING does the same thing += does: it makes it harder to make a mistake.
MyLongFieldNameA = MyLongFieldNameAA + 1
vs
MyLongFieldNameA += 1
MYTABLE A join MYTABLE B
on (A.KEY1, A.KEY2, A.KEY3) = (B.KEY2, B.KEY1, A.KEY3)
vs
MYTABLE A join MYTABLE B using (KEY1, KEY2, LEY3)
Second syntax avoid two popular errors, and by popular, I mean ones I do
all the time :). Wrong key name (or just simple transposition) and
wrong table qualifier.
This mailing list archive is Copyright 1997-2026 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.