Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TSQL/MySQL Equivalents

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)?

like image 351
David Perry Avatar asked May 16 '11 17:05

David Perry


People also ask

How similar is SQL and MySQL?

SQL is a query programming language for managing RDBMS. In contrast, MySQL is an RDBMS (Relational Database Management System) that employs SQL. So, the major difference between the two is that MySQL is software, but SQL is a database language.

Is MySQL and Oracle similar?

MySQL and Oracle SQL are both RDBMSs (relational database management systems) owned by Oracle Corporation. MySQL is built to be primarily free and open-source, while Oracle is primarily built to be commercial and paid. MySQL is also more customizable than Oracle which is because Oracle is a finished product.

Is Postgres similar to MySQL?

The Critical Differences of Postgres vs MySQL: MySQL is a simpler database that's fast, reliable, well understood, and easy to set up and manage. PostgreSQL is an object-relational database (ORDBMS) with features like table inheritance and function overloading, whereas MySQL is a pure relational database (RDBMS).

Is MariaDB and MySQL similar?

Even though MariaDB is a fork of MySQL, these two database management systems are still quite different: MariaDB is fully GPL licensed while MySQL takes a dual-license approach. Each handle thread pools in a different way. MariaDB supports a lot of different storage engines.


1 Answers

This may help:

Comparison of different SQL implementations

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

like image 139
D'Arcy Rittich Avatar answered Sep 20 '22 05:09

D'Arcy Rittich