sql/Mysql programming on Ubuntu 10.04

bijay_ps

Broken In
Hey guys! I am new to linux. And I have installed Ubuntu 10.04. Now I want to do database programing like creating tables, joins,etc
so can anyone tell me how to do that in Ubuntu 10.04??
 

krishnandu.sarkar

Simply a DIGITian
Staff member
Install LAMP and PhpMyAdmin.

Check *help.ubuntu.com/community/ApacheMySQLPHP

Just run..

Code:
sudo tasksel install lamp-server
sudo apt-get install phpmyadmin

And you'll be ready for your development.
 

krishnandu.sarkar

Simply a DIGITian
Staff member
You mean you want to write SQL Scrips right??

For that go to *localhost/phpmyadmin and login using your MySQL Username and Password that you set while installing MySQL and PHPMyAdmin.

And voila, you are on MySQL. Now you can try out SQL Scripts that you want to :)
 
Top Bottom