TSQL Vs MySQL?

Asked By 20 points N/A Posted on -
qa-featured

What is the difference between TSQL vs MySQL?

SHARE
Best Answer by Sharath Reddy
Answered By 50 points N/A #289160

TSQL Vs MySQL?

qa-featured

T-SQL is the syntax for writing SQL only for the Microsoft SQL Server framework. Hence it is only ANSI-92 compliant. But it also possesses some of its own conveniences and conventions which are not standard and will not be clear to the interpreters in other RDBMS engines. A brother to T-SQL can be PL/SQL for databases by Oracle.

75pc

MySQL is an open-source, RDMS engine. So it is almost similar to other SQL structures it terms of what it does. Since it is free, it is hugely popular in various environments for developments.There are no hardware limitations, and MySQL allows a lot of flexibility for usage.

Best Answer
Best Answer
Answered By 590495 points N/A #292702

TSQL Vs MySQL?

qa-featured

T-SQL stands for “Transact-SQL”. It is a set of programming extensions from Microsoft and Sybase that add quite a few features to SQL. Some of the features include row processing, declared variables, transaction control, and exception and error handling. SQL, on the other hand, stands for “Structured Query Language”. Both of the SQL servers of Microsoft and Sybase support T-SQL statements.

MySQL is based on SQL. It is an open source RDBMS or Relational DataBase Management System and runs in almost all platforms like Microsoft Windows, Linux, and UNIX. It is frequently associated with web-based applications and online publishing though it can be used in an extensive array of applications. It is also a vital component of LAMP, an open source enterprise stack.

LAMP is a kind of web development platform with Linux operating system, Apache web server, PHP object-oriented scripting language, and MySQL relational database management system.

Related Questions