Is MySQL and SQL the same?

United States
August 14, 2011 4:30pm CST
I need to build a SQL database. Can I do that with MySQL? Point me in the right direction.
1 person likes this
4 responses
@dollar3235 (2062)
• India
14 Aug 11
SQL is a language. Structured Query Language (SQL) is an international standard for database manipulation. You can use SQL in different relational database available in market. e.g. SQL Server (By Microsoft), Oracle Database, MySQL etc. Check the steps here: http://www.abbeyworkshop.com/howto/lamp/my_createdb/index.html For more details on MySQL, check this one: http://en.wikipedia.org/wiki/MySQL
• India
16 Aug 11
Let me give you an example: SQL is like a brick and MySQL, SQL Server, Oracle are different buildings built using SQL and other things.
• Israel
3 Apr 22
This website is not being updated since 2020. Please give me more help with SQL!
@santhuqr (107)
• India
16 Aug 11
SQL stands for Structured Query Language.Its a standard language for accessing and manipulating databases. Whereas MySQL is database management system, like SQL Server 2005, Oracle,Informix etc. MySQLis a RDMS(Relational Database Management System) it relates the data in the working system.All types of these RDMB's use SQL. SQL is used to manipulate database or to create a database. Its actually a common language. Whereas MySQL is an actual computer application. You need to download or collect it and install it in your computer. Now if you want to create a database use MySQL.
@AdalieM (1134)
• United States
14 Aug 11
You should find the answers here http://www.gidforums.com/t-732.html
@surfer222 (1714)
• Indonesia
15 Aug 11
SQL is a language, while mysql is a product. The difference is kinda like C++ and visual C++, C++ is a language, while Visual C++ is a product.