Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Difference between SQL (ansi) and Transact SQL 2

Status
Not open for further replies.

Louise99

Technical User
Sep 13, 2004
70
US
Any concise explanations or is it someone I need to research?




Thanks!
 
I think you will need to research it. The ANSI standard is a rather large document.

Good Luck,

Alex

Ignorance of certain subjects is a great part of wisdom
 
There shouldn't be any. T-SQL should be written using the ANSI standard.

Case in point: joining tables. You can join using the deprecated method:

Code:
FROM table1, table2
WHERE table1.id = intVal1
   AND table2.id = intVal1

but the "more better" method is using the ANSI standard:

Code:
FROM table1
JOIN table2
   ON table2.id = table1.id
WHERE table1.id = intVal1



< M!ke >
Acupuncture Development: a jab well done.
 
Too true, Rudy, and the reason why "should" was in bold! But we can try, can't we? ;-)

Lord, you give them eyes, but they cannot see!



< M!ke >
Acupuncture Development: a jab well done.
 
Thanks for passing along that spreadsheet Rudy. I have never seen all the differences listed in one place before.

It looks like my suspicions are correct, I am pretty good except for the date/time and string manipulation functions (but who needs to use those, right :-( )

Anyways, have a * for sharing :-D

Ignorance of certain subjects is a great part of wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top