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

Can you edit all columns in a table using phpMyAdmin?

Using phpMyAdmin: can one alter a table's schema by inserting new columns, as one would using spreadsheet software? Like when one creates a new table.
Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607
3
votes
1 answer

MySQL super privilege error 1227

I exported my SQL tables and views from my local machine. I tried to import it into my website's machine. But I get this error: #1227 - Access denied; you need the SUPER privilege for this operation The error is given for this query: CREATE…
trante
  • 33,518
  • 47
  • 192
  • 272
3
votes
1 answer

Allowed Memory size exhausted

I have wamp and change configuration in php.ini still show below error while importing zip sql file to database in phpmyadmin Allowed memory size of 67108864 bytes exhausted (tried to allocate 69931615 bytes) in…
CodeManiac
  • 974
  • 8
  • 34
  • 56
3
votes
5 answers

Columns hidden/missing inside phpmyadmin

When I click on the "explore" tab it would normally show me the data inside my table, but for some reason it wont show me all the columns. It only shows me 5 columns and the rest are hidden. The exact same thing happens when I use this query: SELECT…
user1534664
  • 3,258
  • 8
  • 40
  • 66
3
votes
2 answers

having really strange issue in auto_increment

I have table called notifications and i have id auto_increment primary key. Complete Table Structure. CREATE TABLE IF NOT EXISTS `notifications` ( `id` int(11) NOT NULL auto_increment, `user_id` int(11) NOT NULL, `sender_id` int(11) NOT NULL, …
Dipesh Parmar
  • 27,090
  • 8
  • 61
  • 90
3
votes
1 answer

MySQL: How to get around temporary table error on this query?

ok I bugged my head on this the whole day today and can't get this to work, basically I'm trying to query randomly 12 photos from a temp table which contains all photos the active logged-in user not yet voted on. The error is obviously #1137 - Can't…
jerrytouille
  • 1,238
  • 1
  • 13
  • 28
3
votes
4 answers

Importing SQL file "Duplicate entry '0' for key 'PRIMARY'"

I know there is similar questions that are answered but please try to help me out. I'm importing a backup of my MyBB database into a new host using PHPMyAdmin. When trying to import the .sql file, I get the following error: SQL query: INSERT INTO…
devs
  • 541
  • 2
  • 13
  • 27
3
votes
6 answers

How to Auto Increment ID Numbers with Letters and Numbers

How to Auto Increment ID Numbers with Letters and Numbers, example "KP-0001" it will increment to "KP-0002" Thank you!
user2038163
  • 39
  • 1
  • 1
  • 5
3
votes
1 answer

may be approximate. see faq 3.11 phpmyadmin

Recently, phpmyadmin show this message at the top of my Records in database. The description of this message is: "The number of records for InnoDB tables is not correct. phpMyAdmin uses a quick method to get the row count, and this method only…
Student
  • 561
  • 1
  • 9
  • 16
3
votes
5 answers

Is there a fast way to update many records in SQL?

I need to replace more than 20 000 names with new names i created given the CodeID. For example: I must update all rows that contain "dog" (which has a CodeID of 1) with "cat", and update all rows that contain "horse" (which has a CodeID of 2)…
sami
  • 867
  • 1
  • 8
  • 13
3
votes
1 answer

I couldn't create a Foreign Key in a Table. What should I do?

I have tables named add_disease and specificity_of_gender. I want to set the primary key of specificity_of_gender table as foreign key in add_disease table. My codes are like below: -- -- Table structure for table `add_disease` -- CREATE TABLE IF…
3
votes
2 answers

Same conditions, different result?

From reading the MySQL documentation, I can't explain the difference between these two queries in phpMyAdmin: SELECT * FROM f_ean GROUP BY ean HAVING type = 'media' --> gives me 57059 results SELECT ean, type FROM f_ean GROUP BY ean HAVING type =…
puyol5
  • 69
  • 5
3
votes
2 answers

Determine max number of character in a field

The field size of the MySQL daabase I'm working on have been determine quite arbitrary and I'd like to review them based on its current data. So I'd like to determine the maximum number of character per field so I'm sure I won't lose any data when I…
magdmartin
  • 1,712
  • 3
  • 20
  • 43
3
votes
2 answers

phpMyAdmin and latin1_swedish_ci

I create new database with utf8_general_ci collation, create test table also with utf8_general_ci collation, and then i click on my database(structure) and this is what i get: Why is that "latin1_swedish_ci" showing up? Edit: Ok how to change…
Gavrisimo
  • 1,827
  • 5
  • 25
  • 33
3
votes
2 answers

phpMyAdmin hangs on proc with multiple SELECTS

When I CALL this proc in MySQL, it just shows LOADING... and even freezes my server: delimiter $$ CREATE PROCEDURE MyProc(IN index1 INT, IN count1 INT, IN index2 INT, IN count2 INT) BEGIN SELECT id FROM view1 WHERE column1 IS NULL OR column1 = 1…
user1382306