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
2 answers

MAMP can't incresse phpmyadmin upload limit

I'm using MAMP 3.0.3 and have phpmyadmin 4.1.9 installed. I have changed the php.ini files in all locations within: /Applications/MAMP/bin/php/php5.X.X/conf to all have: post_max_size = 200M upload_max_filesize = 200M max_input_time =…
Stefan Dunn
  • 5,363
  • 7
  • 48
  • 84
3
votes
2 answers

Unable to Run Query in MySQL syntax error unexpected

I'm running Workbench 5.2.47. I have a long procedure I wrote with basic data checking. If a record did not exist in the database, the record would be inserted. The procedure saved with no problems, but MySQL 5.5 throws an error when I try running…
user153923
3
votes
3 answers

Installing phpMyAdmin on Amazon Linux

After installing phpMyAdmin on Amazon Linux using these commands...: sudo yum --enablerepo=epel install phpmyadmin sudo ln -s /usr/share/phpmyadmin /var/www/html/phpmyadmin ... I have tried the steps described in this tutorial (referred to in…
AlexR
  • 5,514
  • 9
  • 75
  • 130
3
votes
1 answer

Is a local MySQL server needed if I just want to use PHPMyAdmin to access distant server?

I haven't found a straight answer to this question in documentations and questions: I need to install PHPMyAdmin on my computer to access a distant MySQL database. Do I need to use a local MySQL server in this case?
3
votes
1 answer

I broke my Mysql View query. How do I fix it?

A few months ago I created a VIEW that gives me last month's transactions. I use that view within other queries. The problem is, I changed some table names of tables that are referenced inside the VIEW and have broken the VIEW query in the…
user77413
  • 30,205
  • 16
  • 46
  • 52
3
votes
1 answer

Export data with phpmyadmin, ordered on row-level

I'm working with a huge database with more than 800 tables and over 50,000 rows in total. All these tables have different structures, with the exception of a timestamp field which is present in all tables. My challenge: export all data but be able…
Kablam
  • 2,494
  • 5
  • 26
  • 47
3
votes
2 answers

How do I write an SP in phpMyAdmin (MySQL)?

How do I write a stored procedure in phpMyAdmin?
Bharanikumar
  • 25,457
  • 50
  • 131
  • 201
3
votes
1 answer

phpmyadmin, neginx error.log - Check group www-data has read access and open_basedir

I have this message on phpmyadmin website The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click here. On the 'click here' page I have this: Page printscreen My nginx…
Francisc
  • 393
  • 7
  • 16
3
votes
1 answer

Importing CSV to MySQL while looking up foreign key

Please excuse any syntax errors in my examples; I am new to SQL. For this question, let us suppose I have this hypothetical structure: authors_list: author_id INT NOT_NULL AUTO_INCREMENT PRIMARY author_name VARCHAR(30)…
gautam
  • 302
  • 5
  • 17
3
votes
1 answer

phpMyAdmin incorrect results count

Stumbled across potentially a bug(?) within phpMyAdmin, although it's more likely to maybe be my misunderstanding of MySQL, so was hoping someone could shed some light on this behaviour. Using the following schema CREATE TABLE IF NOT EXISTS…
SubjectCurio
  • 4,702
  • 3
  • 32
  • 46
3
votes
2 answers

Phpmyadmin gibberish at main table overview (but ok when click on edit)

My phpmyadmin is funny The last couple of days, the overview of the table columns is total "encoded" gibberish But when I click on edit on any of them, the real content shows just fine Everything is set to be UTF-8 by the way The database works…
mowgli
  • 2,796
  • 3
  • 31
  • 68
3
votes
1 answer

Select a record just if the one before it has a lower value takes too long and fail

I've already asked 2 questions about this subject and got great answers on both of them. Select a record just if the one before it has a lower value Select a record just if the one before it has a lower value filtered by month (question 2 is…
Guy Messika
  • 169
  • 1
  • 15
3
votes
1 answer

mysqldump line timeout issues

Similar to: Only getting a friendlier mysqldump isn't possible. My webhost kicked my database off so the latest backup I have is their mysqldump. In other words, --extended-insert=FALSE --complete-insert=TRUE isn't possible, I already have the…
rlb.usa
  • 14,942
  • 16
  • 80
  • 128
3
votes
2 answers

SQL statement to display in group of certain column

I am currently at project of creating scheduling system based on web. I want to get data from database, and display it in table (schedule format). In database, I have 2 table schedule id date day 1 22/09/2014 Monday 2 23/09/2014 …
3
votes
1 answer

MySQL syntax error when specifying innodb database type and character set

I cant seem to import my tables.sql to a database called callumba_login. Here is the SQL: CREATE TABLE Country( country_code char(2) not null, country_name varchar(60) not null, primary key(country_code) …
user3657631
  • 45
  • 1
  • 5