Data types
Mar 14,16A data type defines what kind of value a column in a database table can contain. This parameter tells MySQL …
Read MoreCreate a table
Mar 14,16Tables are subcontainers within a database that store the actual data. The database is created without any tables. To create …
Read MoreCreate a user
Mar 14,16You should not do all your work in MySQL with the root user; instead, it is recommended to create users …
Read MoreCreate a database
Mar 14,16To create an MySQL database, the CREATE DATABASE name statement is used. For example, to create a database named testdb, …
Read MoreSQL commands syntax
Mar 14,16MySQL uses a standard form of the well-known SQL data language. The great thing about SQL is that the code …
Read MoreStart the command-line interface
Mar 14,16To access the command-line interface from Windows, select Start > Run and type cmd: This will open the Command Prompt. …
Read More