TSQL/MySQL Equivalents

11,326

This may help:

Comparison of different SQL implementations

Functions in particular are here: http://troels.arvin.dk/db/rdbms/#functions

Share:
11,326
David Perry
Author by

David Perry

Updated on June 14, 2022

Comments

  • David Perry
    David Perry about 2 years

    I've spent a lot of time in SQL Server product, but not so much in mySQL. I'm aware of the most basic differences in their SQL implementation, i.e. TOP 1" == "LIMIT 1" and so forth, but once we enter the world of programmability, I am absolutely clueless as to what built-in functions mySQL does and does not have.

    I can find documentation on the mySQL functions by themselves easily enough, but I'm wondering if there's a document of some kind that simply lists SQL Server functions and their mySQL equivalents (or vice versa)?

  • David Perry
    David Perry about 13 years
    That's exactly what I was looking for. Thanks a bunch!