Questions tagged [phpmyadmin]

phpMyAdmin is an open-source, web-based MySQL administration tool written in PHP. Use this tag for problems related to using this tool and not for general query problems

phpMyAdmin is an open source tool written in intended to handle the administration of over the Web. In other words, it allows you to handle MySQL via the web browser in a visual format, with no need to write complex commands from the command line. It can perform various tasks such as creating, reading, updating or deleting databases, tables, columns or rows (); executing statements; or managing users and permissions.

Since the version 4.0.0-alpha1, the HTML frames are gone and the navigation panel now presents a tree.

Features

  • Features provided by the program include:

  • Web interface

  • MySQL database management

  • Import data from CSV and SQL

  • Export data to various formats: CSV, SQL, XML, PDF (via the TCPDF
    library), ISO/IEC 26300 - OpenDocument Text and Spreadsheet, Word,
    Excel, LaTeX and others

  • Administering multiple servers

  • Creating PDF graphics of the database layout

  • Creating complex queries using Query-by-Example (QBE)

  • Searching globally in a database or a subset of it

  • Transforming stored data into any format using a set of predefined
    functions, like displaying BLOB-data as image or download-link

  • Live charts to monitor MySQL server activity like connections,
    processes, CPU/Memory usage, etc.

  • Working with different operating systems.

Useful links

Frequently asked questions

Check documentation for full list of frequent questions.

Similar lightweight tools:

16409 questions
3
votes
4 answers

Can't open phpmyadmin, require_once(./libraries/common.inc.php): failed to open stream: No such file or directory

When I do php /usr/share/phpmyadmin/index.php, I get this. PHP Warning: require_once(./libraries/common.inc.php): failed to open stream: No such file or directory in /usr/share/phpmyadmin/index.php on line 33 PHP Fatal error: require_once():…
Noah
  • 4,601
  • 9
  • 39
  • 52
3
votes
2 answers

Cannot access wamp server 2.5 services on local network

We have installed wampserver2.5 and set up the wampserver in my system, we can access through local system but cannot access trough my local network. The following error appears Please help me to resolve this problem.
Kuringi
  • 75
  • 1
  • 7
3
votes
2 answers

SQL JOIN first row with CONCAT_WS

I'm wanting to only reference the first result back from my users table, but I'm getting the following error #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use…
dpDesignz
  • 1,909
  • 10
  • 34
  • 70
3
votes
1 answer

Archlinux :: pacman phpmyadmin returns a 404

# pacman -S phpmyadmin Returns the following error: Packages (2): php-mcrypt-5.6.2-2 phpmyadmin-4.2.10.1-1 Total Download Size: 5.10 MiB Total Installed Size: 28.69 MiB Net Upgrade Size: 28.64 MiB :: Proceed with installation?…
edlee
  • 665
  • 1
  • 7
  • 20
3
votes
1 answer

modify the table from its own trigger in Mysql- PhpMyAdmin

I'm using Mysql in phpMyAdmin,where i have to delete a entry from tableA if i insert a row with same primary key.I thought to do it in trigger of tableA BEFORE INSERT For Ex, if the tableA contains 1 Hai Hello here 1 is the primary key And now if i…
user3784251
  • 520
  • 2
  • 10
  • 24
3
votes
3 answers

How to import SQL file to MySQL database without phpMyAdmin

I have a .sql file with a MySQL dump created with phpMyAdmin. I want to import the .sql file to another database without phpMyAdmin access. I have the database credentials: name, username and password. How can I import the .sql file? The SQL file…
joan16v
  • 5,055
  • 4
  • 49
  • 49
3
votes
2 answers

Cannot connect to a database in wamp

I created a simple form in HTML to add the details of student. It contains text fields foe first name, last name, age, phone and email. And i created a database in wamp phpmyadmin and created a table named stud with fields fname, lname, age, phone,…
Andria
  • 47
  • 2
3
votes
3 answers

What can be the solution for frequently occuring #126 - Incorrect key file for table '/tmp/#sql_4a05_0.MYI'; try to repair it in mysql?

I have a database table named answer when I insert data into in it, the data get inserted but it give the following problem to another table '#126 - Incorrect key file for table '/tmp/#sql_4a05_0.MYI'; try to repair it ' Then I solve this problem…
3
votes
2 answers

move field up/down in a table using phpmyadmin?

is there a way to move an existing entry up/down in a table? i cant see any button for it in phpmyadmin.
never_had_a_name
  • 90,630
  • 105
  • 267
  • 383
3
votes
1 answer

Find times value has been used and multiply it by amount across tables in SQL

I'm doing a school assignment that has to do with gifts and their production time. We have the table "gift" which contains the name, gift_number and gift_production_time, and the table "wishes", which contains gift_number, wish_number and…
Steepmountain
  • 363
  • 3
  • 7
3
votes
1 answer

Unable to use PHPMyAdmin's Edit Routine panel for multi-line procedures

PHPMyAdmin includes an 'add routine' and 'edit routine' panel in newer versions. The developers talked about how it could be used to write routines that are 'hundreds of lines long', but they only showed single statement routines when they were…
3
votes
1 answer

Is it possible to delete multiple rows in MySQL if target table is in from clause?

I'm using PHPMYAdmin and MySQL Database. I would like to remove from the table 1masterinventory all the rows (PK RID) that are not in 1amazoninventory (PK RID). I feel like this query should work but I get the error "#1093 - You can't specify target…
dimlee
  • 452
  • 1
  • 10
  • 22
3
votes
2 answers

PhpMyAdmin auto refresh MySQL table

When I Run update or select query within phpmyadmin local page, I get table results pop up with the "GO" button. But for using *.php file from a server I have to use refresh button to see the newly incoming data on my table, create view didn't help,…
yonas mekonen
  • 51
  • 1
  • 7
3
votes
3 answers

How to add md5 hash of a password in phpmyadmin 4.1.6?

I am new to phpmyadmin. I wanted to store md5 hash of password in database table without using help of php code. So I found on solution here . But I could not find the option for 'function' in phpmyadmin-4.1.6. How can I achieve my goal?
user3909208
  • 71
  • 1
  • 2
  • 7
3
votes
5 answers

#1146 - Table 'phpmyadmin.pma_column_info' doesn't exist

I've recently just installed XAMPP and I'm pretty new to all of this. I was trying to open a new DB in phpmyadmin, but it wrote me this error - #1146 - Table 'phpmyadmin.pma_column_info' doesn't exist. I looked it up on the web and it said that I…
Ido Daniel
  • 53
  • 2
  • 2
  • 5