This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Friday, December 14, 2012

Merubah Nama Tabel Di MySQL

Lagi banyak tugas basis data, dan ini salah satu catatan yang gampang sebenernya tapi mungkin banyak yang lupa :

ALTER TABLE [nama_tabel_lama] RENAME TO [nama_tabel_baru] ; 


Kalau misalnya nama tabel menggunakan spasi, misalnya nama tabel : table 13
caranya dengan : 

ALTER TABLE `table 13` RENAME TO `mahasiswa`; 

Semoga bermanfaat :)