MySQL: Difference between revisions

From 太極
Jump to navigation Jump to search
No edit summary
Line 7: Line 7:
</pre>
</pre>


== create a database 'demo' and a table 'employee' ==
== Create a database 'demo' and a table 'employee' ==
http://www.thegeekstuff.com/2011/10/mysql-tutorial-basics/
http://www.thegeekstuff.com/2011/10/mysql-tutorial-basics/
<pre>
<pre>

Revision as of 11:15, 7 November 2012

Create a user and grant permission in mysql

http://www.cyberciti.biz/faq/mysql-user-creation/

mysql -u root -p
CREATE DATABASE demo;
GRANT ALL ON demo.* TO guest@localhost IDENTIFIED BY 'guest123';

Create a database 'demo' and a table 'employee'

http://www.thegeekstuff.com/2011/10/mysql-tutorial-basics/

mysql -u guest -p demo
show databases;
use demo;
show tables;
create table employee .............;
desc employee;
insert into employee .............;
select * from employee;

access mysql using perl

http://www.cyberciti.biz/faq/how-to-access-mysql-database-using-perl