MySQL Connection - Describe MySQL Connection using mysql binary

Describe MySQL Connection using mysql binary.

Establishing connection to MySQL database using Mysql binary can be done at command prompt.
Mysql –u user_name –p
On entering the user name and password the mysql command prompt will be opened to execute any sql statement.

Describe MySQL Connection using mysql binary.

The MySQL connection using mysql binary can be established by using the following command at os command prompt of unix.
mysql -u root –p
which connects to MySQL and launches mysql > prompt.
MySQL - Explain advantages of MyISAM over InnoDB?
Explain advantages of MyISAM over InnoDB? - MyISAM is faster than InnoDB in most of the cases. MyISAM table is stored....
MySQL - Stored Procedures and Triggers
MySQL - Stored Procedures and Triggers - When multiple applications need to perform common database operations....
MySQL - Primary keys and auto increment fields in MySQL
Primary keys and auto increment fields in MySQL - Primary key is used to uniquely identify a row in a table. Usually the primary key....
Post your comment