1917
MySQL Reference Manual

MySQL Reference Manual - dblab.ece.ntua.grkpatro/geodb/manuals/mySQL5... · Overview of the MaxDB Database Management System ... 5.1.3. mysqld_safe — MySQL Server Startup Script

  • Upload
    vudiep

  • View
    227

  • Download
    0

Embed Size (px)

Citation preview

  • MySQL Reference Manual

  • MySQL Reference Manual

  • Table of ContentsPreface ..................................................................................................................xxvi1. General Information ................................................................................................. 1

    1.1. About This Manual ........................................................................................ 11.2. Conventions Used in This Manual .................................................................... 21.3. Overview of MySQL AB ................................................................................ 41.4. Overview of the MySQL Database Management System ...................................... 5

    1.4.1. History of MySQL .............................................................................. 61.4.2. The Main Features of MySQL ............................................................... 61.4.3. MySQL Stability ................................................................................ 91.4.4. How Big MySQL Tables Can Be ......................................................... 101.4.5. Year 2000 Compliance ...................................................................... 11

    1.5. Overview of the MaxDB Database Management System ..................................... 121.5.1. What is MaxDB? .............................................................................. 121.5.2. History of MaxDB ............................................................................ 131.5.3. Features of MaxDB ........................................................................... 131.5.4. Licensing and Support ....................................................................... 141.5.5. Feature Differences Between MaxDB and MySQL ................................. 141.5.6. Interoperability Features Between MaxDB and MySQL ........................... 151.5.7. MaxDB-Related Links ....................................................................... 15

    1.6. MySQL Development Roadmap ..................................................................... 161.6.1. MySQL 4.0 in a Nutshell .................................................................... 161.6.2. MySQL 4.1 in a Nutshell .................................................................... 181.6.3. What's New in MySQL 5.0 ................................................................. 20

    1.7. MySQL Information Sources ......................................................................... 211.7.1. MySQL Mailing Lists ........................................................................ 211.7.2. MySQL Community Support on IRC (Internet Relay Chat) ....................... 281.7.3. MySQL Community Support at the MySQL Forums ............................... 28

    1.8. MySQL Standards Compliance ...................................................................... 291.8.1. What Standards MySQL Follows ......................................................... 291.8.2. Selecting SQL Modes ........................................................................ 291.8.3. Running MySQL in ANSI Mode ......................................................... 301.8.4. MySQL Extensions to Standard SQL .................................................... 301.8.5. MySQL Differences from Standard SQL ............................................... 331.8.6. How MySQL Deals with Constraints .................................................... 39

    2. Installing MySQL .................................................................................................. 432.1. General Installation Issues ............................................................................ 43

    2.1.1. Operating Systems Supported by MySQL .............................................. 442.1.2. Choosing Which MySQL Distribution to Install ...................................... 462.1.3. How to Get MySQL .......................................................................... 572.1.4. Verifying Package Integrity Using MD5 Checksums or GnuPG ................. 572.1.5. Installation Layouts ........................................................................... 60

    2.2. Standard MySQL Installation Using a Binary Distribution .................................. 622.3. Installing MySQL on Windows ...................................................................... 62

    2.3.1. Windows System Requirements ........................................................... 622.3.2. Choosing An Installation Package ........................................................ 632.3.3. Installing MySQL with the Automated Installer ...................................... 642.3.4. Using the MySQL Installation Wizard .................................................. 642.3.5. Using the Configuration Wizard .......................................................... 672.3.6. Installing MySQL from a Noinstall Zip Archive ..................................... 712.3.7. Extracting the Install Archive .............................................................. 722.3.8. Creating an Option File ...................................................................... 722.3.9. Selecting a MySQL Server type ........................................................... 732.3.10. Starting the Server for the First Time .................................................. 75

    iv

  • 2.3.11. Starting MySQL from the Windows Command Line .............................. 762.3.12. Starting MySQL as a Windows Service ............................................... 772.3.13. Testing The MySQL Installation ........................................................ 792.3.14. Troubleshooting a MySQL Installation Under Windows ......................... 802.3.15. Upgrading MySQL on Windows ........................................................ 812.3.16. MySQL on Windows Compared to MySQL on Unix ............................. 82

    2.4. Installing MySQL on Linux ........................................................................... 852.5. Installing MySQL on Mac OS X .................................................................... 872.6. Installing MySQL on NetWare ...................................................................... 892.7. Installing MySQL on Other Unix-Like Systems ................................................ 912.8. MySQL Installation Using a Source Distribution ............................................... 95

    2.8.1. Source Installation Overview .............................................................. 952.8.2. Typical configure Options ............................................................. 982.8.3. Installing from the Development Source Tree ....................................... 1012.8.4. Dealing with Problems Compiling MySQL .......................................... 1052.8.5. MIT-pthreads Notes ........................................................................ 1082.8.6. Installing MySQL from Source on Windows ........................................ 1092.8.7. Compiling MySQL Clients on Windows ............................................. 113

    2.9. Post-Installation Setup and Testing ............................................................... 1132.9.1. Windows Post-Installation Procedures ................................................ 1142.9.2. Unix Post-Installation Procedures ...................................................... 1142.9.3. Securing the Initial MySQL Accounts ................................................. 126

    2.10. Upgrading MySQL .................................................................................. 1292.10.1. Upgrading from Version 5.0 ............................................................ 1302.10.2. Upgrading from Version 4.1 to 5.0 ................................................... 1302.10.3. Upgrading from Version 4.0 to 4.1 ................................................... 1332.10.4. Upgrading from Version 3.23 to 4.0 .................................................. 1392.10.5. Upgrading from Version 3.22 to 3.23 ................................................ 1432.10.6. Upgrading from Version 3.21 to 3.22 ................................................ 1452.10.7. Upgrading from Version 3.20 to 3.21 ................................................ 1452.10.8. Upgrading the Grant Tables ............................................................ 1462.10.9. Copying MySQL Databases to Another Machine ................................ 147

    2.11. Downgrading MySQL .............................................................................. 1482.11.1. Downgrading to 4.1 ....................................................................... 1492.11.2. Downgrading to 4.0 ....................................................................... 150

    2.12. Operating System-Specific Notes ................................................................ 1502.12.1. Linux Notes ................................................................................. 1502.12.2. Mac OS X Notes ........................................................................... 1572.12.3. Solaris Notes ................................................................................ 1582.12.4. BSD Notes ................................................................................... 1622.12.5. Other Unix Notes .......................................................................... 1662.12.6. OS/2 Notes .................................................................................. 1812.12.7. BeOS Notes ................................................................................. 182

    2.13. Perl Installation Notes .............................................................................. 1822.13.1. Installing Perl on Unix ................................................................... 1822.13.2. Installing ActiveState Perl on Windows ............................................. 1832.13.3. Problems Using the Perl DBI/DBD Interface ....................................... 184

    3. MySQL Tutorial .................................................................................................. 1873.1. Connecting to and Disconnecting from the Server ............................................ 1873.2. Entering Queries ....................................................................................... 1883.3. Creating and Using a Database ..................................................................... 191

    3.3.1. Creating and Selecting a Database ...................................................... 1923.3.2. Creating a Table ............................................................................. 1933.3.3. Loading Data into a Table ................................................................ 1943.3.4. Retrieving Information from a Table .................................................. 195

    3.4. Getting Information About Databases and Tables ............................................ 2093.5. Using mysql in Batch Mode ...................................................................... 2103.6. Examples of Common Queries ..................................................................... 212

    MySQL Reference Manual

    v

  • 3.6.1. The Maximum Value for a Column .................................................... 2123.6.2. The Row Holding the Maximum of a Certain Column ........................... 2133.6.3. Maximum of Column per Group ........................................................ 2143.6.4. The Rows Holding the Group-wise Maximum of a Certain Field .............. 2143.6.5. Using User Variables ....................................................................... 2153.6.6. Using Foreign Keys ........................................................................ 2153.6.7. Searching on Two Keys ................................................................... 2173.6.8. Calculating Visits Per Day ................................................................ 2183.6.9. Using AUTO_INCREMENT ............................................................... 218

    3.7. Queries from the Twin Project ..................................................................... 2193.7.1. Find All Non-distributed Twins ......................................................... 2203.7.2. Show a Table of Twin Pair Status ...................................................... 222

    3.8. Using MySQL with Apache ........................................................................ 2224. Using MySQL Programs ....................................................................................... 224

    4.1. Overview of MySQL Programs .................................................................... 2244.2. Invoking MySQL Programs ........................................................................ 2254.3. Specifying Program Options ........................................................................ 226

    4.3.1. Using Options on the Command Line ................................................. 2264.3.2. Using Option Files .......................................................................... 2284.3.3. Using Environment Variables to Specify Options .................................. 2334.3.4. Using Options to Set Program Variables .............................................. 233

    5. Database Administration ....................................................................................... 2355.1. The MySQL Server and Server Startup Scripts ................................................ 235

    5.1.1. Overview of the Server-Side Scripts and Utilities .................................. 2355.1.2. The mysqld-max Extended MySQL Server ....................................... 2365.1.3. mysqld_safe MySQL Server Startup Script ...................................... 2395.1.4. mysql.server MySQL Server Startup Script ..................................... 2435.1.5. mysqld_multi Program for Managing Multiple MySQL Servers .......... 243

    5.2. The MySQL Instance Manager .................................................................... 2475.2.1. Starting the MySQL Server with MySQL Instance Manager ................... 2475.2.2. Connecting to the MySQL Instance Manager and Creating User Accounts . 2485.2.3. MySQL Instance Manager Command-Line Options .............................. 2485.2.4. MySQL Instance Manager Configuration Files ..................................... 2505.2.5. Commands Recognized by the MySQL Instance Manager ...................... 251

    5.3. Configuring the MySQL Server ................................................................... 2535.3.1. mysqld Command-Line Options ...................................................... 2535.3.2. The Server SQL Mode ..................................................................... 2655.3.3. Server System Variables .................................................................. 2695.3.4. Server Status Variables .................................................................... 302

    5.4. The MySQL Server Shutdown Process .......................................................... 3125.5. General Security Issues .............................................................................. 313

    5.5.1. General Security Guidelines .............................................................. 3145.5.2. Making MySQL Secure Against Attackers .......................................... 3165.5.3. Startup Options for mysqld Concerning Security ................................ 3185.5.4. Security Issues with LOAD DATA LOCAL .......................................... 319

    5.6. The MySQL Access Privilege System ........................................................... 3205.6.1. What the Privilege System Does ........................................................ 3205.6.2. How the Privilege System Works ....................................................... 3205.6.3. Privileges Provided by MySQL ......................................................... 3255.6.4. Connecting to the MySQL Server ...................................................... 3285.6.5. Access Control, Stage 1: Connection Verification ................................. 3295.6.6. Access Control, Stage 2: Request Verification ...................................... 3335.6.7. When Privilege Changes Take Effect .................................................. 3355.6.8. Causes of Access denied Errors .................................................. 3365.6.9. Password Hashing in MySQL 4.1 ...................................................... 341

    5.7. MySQL User Account Management ............................................................. 3465.7.1. MySQL Usernames and Passwords .................................................... 3465.7.2. Adding New User Accounts to MySQL .............................................. 347

    MySQL Reference Manual

    vi

  • 5.7.3. Removing User Accounts from MySQL .............................................. 3505.7.4. Limiting Account Resources ............................................................. 3515.7.5. Assigning Account Passwords ........................................................... 3525.7.6. Keeping Your Password Secure ......................................................... 3535.7.7. Using Secure Connections ................................................................ 355

    5.8. Backup and Recovery ................................................................................ 3635.8.1. Database Backups ........................................................................... 3635.8.2. Example Backup and Recovery Strategy ............................................. 3655.8.3. Point-in-Time Recovery ................................................................... 3695.8.4. Table Maintenance and Crash Recovery .............................................. 3705.8.5. myisamchk MyISAM Table-Maintenance Utility .............................. 3715.8.6. Setting Up a Table Maintenance Schedule ........................................... 3835.8.7. Getting Information About a Table ..................................................... 383

    5.9. MySQL Localization and International Usage ................................................. 3895.9.1. The Character Set Used for Data and Sorting ....................................... 3895.9.2. Setting the Error Message Language ................................................... 3915.9.3. Adding a New Character Set ............................................................. 3915.9.4. The Character Definition Arrays ........................................................ 3935.9.5. String Collating Support ................................................................... 3945.9.6. Multi-Byte Character Support ........................................................... 3945.9.7. Problems With Character Sets ........................................................... 3945.9.8. MySQL Server Time Zone Support .................................................... 395

    5.10. The MySQL Log Files .............................................................................. 3965.10.1. The Error Log .............................................................................. 3975.10.2. The General Query Log .................................................................. 3975.10.3. The Update Log ............................................................................ 3985.10.4. The Binary Log ............................................................................ 3985.10.5. The Slow Query Log ..................................................................... 4025.10.6. Log File Maintenance .................................................................... 403

    5.11. Running Multiple MySQL Servers on the Same Machine ................................ 4035.11.1. Running Multiple Servers on Windows ............................................. 4055.11.2. Running Multiple Servers on Unix ................................................... 4085.11.3. Using Client Programs in a Multiple-Server Environment ..................... 410

    5.12. The MySQL Query Cache ......................................................................... 4105.12.1. How the Query Cache Operates ....................................................... 4115.12.2. Query Cache SELECT Options ........................................................ 4135.12.3. Query Cache Configuration ............................................................. 4135.12.4. Query Cache Status and Maintenance ............................................... 415

    6. Replication in MySQL .......................................................................................... 4176.1. Introduction to Replication .......................................................................... 4176.2. Replication Implementation Overview ........................................................... 4176.3. Replication Implementation Details .............................................................. 418

    6.3.1. Replication Master Thread States ....................................................... 4196.3.2. Replication Slave I/O Thread States ................................................... 4206.3.3. Replication Slave SQL Thread States .................................................. 4216.3.4. Replication Relay and Status Files ..................................................... 421

    6.4. How to Set Up Replication .......................................................................... 4236.5. Replication Compatibility Between MySQL Versions ...................................... 4286.6. Upgrading a Replication Setup ..................................................................... 428

    6.6.1. Upgrading Replication to 4.0 or 4.1 .................................................... 4286.6.2. Upgrading Replication to 5.0 ............................................................ 429

    6.7. Replication Features and Known Problems ..................................................... 4296.8. Replication Startup Options ......................................................................... 4346.9. Replication FAQ ....................................................................................... 4426.10. Troubleshooting Replication ...................................................................... 4476.11. Reporting Replication Bugs ....................................................................... 448

    7. MySQL Optimization ........................................................................................... 4507.1. Optimization Overview .............................................................................. 450

    MySQL Reference Manual

    vii

  • 7.1.1. MySQL Design Limitations and Tradeoffs .......................................... 4507.1.2. Designing Applications for Portability ................................................ 4517.1.3. What We Have Used MySQL For ...................................................... 4527.1.4. The MySQL Benchmark Suite ........................................................... 4527.1.5. Using Your Own Benchmarks ........................................................... 453

    7.2. Optimizing SELECT Statements and Other Queries ......................................... 4547.2.1. EXPLAIN Syntax (Get Information About a SELECT) .......................... 4547.2.2. Estimating Query Performance .......................................................... 4637.2.3. Speed of SELECT Queries ................................................................ 4637.2.4. How MySQL Optimizes WHERE Clauses ............................................. 4647.2.5. Range Optimization ........................................................................ 4667.2.6. Index Merge Optimization ................................................................ 4697.2.7. How MySQL Optimizes IS NULL .................................................... 4727.2.8. How MySQL Optimizes DISTINCT .................................................. 4737.2.9. How MySQL Optimizes LEFT JOIN and RIGHT JOIN ..................... 4737.2.10. How MySQL Optimizes Nested Joins ............................................... 4747.2.11. How MySQL Simplifies Outer Joins ................................................. 4817.2.12. How MySQL Optimizes ORDER BY ................................................ 4837.2.13. How MySQL Optimizes GROUP BY ................................................ 4867.2.14. How MySQL Optimizes LIMIT ...................................................... 4887.2.15. How to Avoid Table Scans .............................................................. 4887.2.16. Speed of INSERT Statements .......................................................... 4897.2.17. Speed of UPDATE Statements .......................................................... 4917.2.18. Speed of DELETE Statements .......................................................... 4917.2.19. Other Optimization Tips ................................................................. 491

    7.3. Locking Issues .......................................................................................... 4947.3.1. Locking Methods ............................................................................ 4947.3.2. Table Locking Issues ....................................................................... 496

    7.4. Optimizing Database Structure ..................................................................... 4987.4.1. Design Choices .............................................................................. 4987.4.2. Make Your Data as Small as Possible ................................................. 4987.4.3. Column Indexes ............................................................................. 4997.4.4. Multiple-Column Indexes ................................................................. 5007.4.5. How MySQL Uses Indexes ............................................................... 5017.4.6. The MyISAM Key Cache .................................................................. 5037.4.7. How MySQL Counts Open Tables ..................................................... 5087.4.8. How MySQL Opens and Closes Tables ............................................... 5097.4.9. Drawbacks to Creating Many Tables in the Same Database ..................... 510

    7.5. Optimizing the MySQL Server .................................................................... 5107.5.1. System Factors and Startup Parameter Tuning ...................................... 5107.5.2. Tuning Server Parameters ................................................................. 5117.5.3. Controlling Query Optimizer Performance ........................................... 5137.5.4. How Compiling and Linking Affects the Speed of MySQL ..................... 5147.5.5. How MySQL Uses Memory ............................................................. 5157.5.6. How MySQL Uses DNS .................................................................. 517

    7.6. Disk Issues ............................................................................................... 5177.6.1. Using Symbolic Links ..................................................................... 518

    8. MySQL Client and Utility Programs ........................................................................ 5228.1. Overview of the Client-Side Scripts and Utilities ............................................. 5228.2. myisampack Generate Compressed, Read-Only MyISAM Tables ................... 5238.3. mysql The MySQL Command-Line Tool ................................................... 530

    8.3.1. Options ......................................................................................... 5308.3.2. mysql Commands ......................................................................... 5358.3.3. Executing SQL Statements from a Text File ......................................... 5388.3.4. mysql Tips ................................................................................... 539

    8.4. mysqladmin Client for Administering a MySQL Server ................................ 5418.5. mysqlbinlog Utility for Processing Binary Log Files .................................... 5468.6. mysqlcc, the MySQL Control Center .......................................................... 549

    MySQL Reference Manual

    viii

  • 8.7. mysqlcheck A Table Maintenance and Repair Program ................................ 5528.8. mysqldump A Database Backup Program .................................................. 5558.9. mysqlhotcopy A Database Backup Program ............................................... 5628.10. mysqlimport A Data Import Program ...................................................... 5648.11. mysqlshow Display Database, Table, and Column Information .................... 5678.12. perror Explain Error Codes .................................................................... 5688.13. replace A String-Replacement Utility ...................................................... 569

    9. Language Structure .............................................................................................. 5719.1. Literal Values ........................................................................................... 571

    9.1.1. Strings .......................................................................................... 5719.1.2. Numbers ....................................................................................... 5739.1.3. Hexadecimal Values ........................................................................ 5739.1.4. Boolean Values .............................................................................. 5749.1.5. Bit-Field Values ............................................................................. 5749.1.6. NULL Values ................................................................................. 574

    9.2. Database, Table, Index, Column, and Alias Names .......................................... 5759.2.1. Identifier Qualifiers ......................................................................... 5769.2.2. Identifier Case Sensitivity ................................................................. 577

    9.3. User Variables .......................................................................................... 5789.4. System Variables ...................................................................................... 579

    9.4.1. Structured System Variables ............................................................. 5819.5. Comment Syntax ....................................................................................... 5839.6. Treatment of Reserved Words in MySQL ...................................................... 584

    10. Character Set Support ......................................................................................... 58910.1. Character Sets and Collations in General ...................................................... 58910.2. Character Sets and Collations in MySQL ..................................................... 59010.3. Determining the Default Character Set and Collation ...................................... 591

    10.3.1. Server Character Set and Collation ................................................... 59110.3.2. Database Character Set and Collation ................................................ 59210.3.3. Table Character Set and Collation .................................................... 59310.3.4. Column Character Set and Collation ................................................. 59310.3.5. Examples of Character Set and Collation Assignment .......................... 59410.3.6. Connection Character Sets and Collations .......................................... 59510.3.7. Character String Literal Character Set and Collation ............................ 59610.3.8. Using COLLATE in SQL Statements ................................................. 59810.3.9. COLLATE Clause Precedence .......................................................... 59810.3.10. BINARY Operator ....................................................................... 59910.3.11. Some Special Cases Where the Collation Determination Is Tricky ........ 59910.3.12. Collations Must Be for the Right Character Set ................................. 60010.3.13. An Example of the Effect of Collation ............................................. 601

    10.4. Operations Affected by Character Set Support ............................................... 60210.4.1. Result Strings ............................................................................... 60210.4.2. CONVERT() ................................................................................ 60210.4.3. CAST() ...................................................................................... 60310.4.4. SHOW Statements .......................................................................... 603

    10.5. Unicode Support ..................................................................................... 60510.6. UTF8 for Metadata .................................................................................. 60510.7. Compatibility with Other DBMSs ............................................................... 60610.8. New Character Set Configuration File Format ............................................... 60710.9. National Character Set .............................................................................. 60710.10. Upgrading Character Sets from MySQL 4.0 ................................................ 607

    10.10.1. 4.0 Character Sets and Corresponding 4.1 Character Set/Collation Pairs . 60810.10.2. Converting 4.0 Character Columns to 4.1 Format .............................. 609

    10.11. Character Sets and Collations That MySQL Supports .................................... 61010.11.1. Unicode Character Sets ................................................................. 61110.11.2. West European Character Sets ....................................................... 61310.11.3. Central European Character Sets .................................................... 61510.11.4. South European and Middle East Character Sets ................................ 616

    MySQL Reference Manual

    ix

  • 10.11.5. Baltic Character Sets .................................................................... 61610.11.6. Cyrillic Character Sets .................................................................. 61710.11.7. Asian Character Sets .................................................................... 617

    11. Column Types ................................................................................................... 62211.1. Column Type Overview ............................................................................ 622

    11.1.1. Overview of Numeric Types ........................................................... 62211.1.2. Overview of Date and Time Types ................................................... 62511.1.3. Overview of String Types ............................................................... 626

    11.2. Numeric Types ........................................................................................ 62911.3. Date and Time Types ............................................................................... 632

    11.3.1. The DATETIME, DATE, and TIMESTAMP Types ................................ 63311.3.2. The TIME Type ............................................................................ 64011.3.3. The YEAR Type ............................................................................ 64111.3.4. Y2K Issues and Date Types ............................................................ 642

    11.4. String Types ........................................................................................... 64211.4.1. The CHAR and VARCHAR Types ...................................................... 64211.4.2. The BINARY and VARBINARY Types .............................................. 64311.4.3. The BLOB and TEXT Types ............................................................ 64411.4.4. The ENUM Type ............................................................................ 64611.4.5. The SET Type .............................................................................. 647

    11.5. Column Type Storage Requirements ........................................................... 64911.6. Choosing the Right Type for a Column ........................................................ 65211.7. Using Column Types from Other Database Engines ....................................... 652

    12. Functions and Operators ...................................................................................... 65412.1. Operators ............................................................................................... 654

    12.1.1. Operator Precedence ...................................................................... 65412.1.2. Parentheses .................................................................................. 65512.1.3. Comparison Functions and Operators ................................................ 65512.1.4. Logical Operators .......................................................................... 660

    12.2. Control Flow Functions ............................................................................ 66212.3. String Functions ...................................................................................... 664

    12.3.1. String Comparison Functions .......................................................... 67412.4. Numeric Functions ................................................................................... 676

    12.4.1. Arithmetic Operators ..................................................................... 67612.4.2. Mathematical Functions ................................................................. 678

    12.5. Date and Time Functions .......................................................................... 68412.6. What Calendar Is Used By MySQL? ........................................................... 70112.7. Full-Text Search Functions ........................................................................ 702

    12.7.1. Boolean Full-Text Searches ............................................................ 70412.7.2. Full-Text Searches with Query Expansion .......................................... 70712.7.3. Full-Text Restrictions .................................................................... 70712.7.4. Fine-Tuning MySQL Full-Text Search .............................................. 70812.7.5. Full-Text Search TODO ................................................................. 710

    12.8. Cast Functions and Operators ..................................................................... 71012.9. Other Functions ....................................................................................... 713

    12.9.1. Bit Functions ................................................................................ 71312.9.2. Encryption Functions ..................................................................... 71412.9.3. Information Functions .................................................................... 71712.9.4. Miscellaneous Functions ................................................................ 723

    12.10. Functions and Modifiers for Use with GROUP BY Clauses ............................ 72612.10.1. GROUP BY (Aggregate) Functions ................................................. 72612.10.2. GROUP BY Modifiers .................................................................. 73012.10.3. GROUP BY with Hidden Fields ...................................................... 732

    13. SQL Statement Syntax ........................................................................................ 73413.1. Data Definition Statements ........................................................................ 734

    13.1.1. ALTER DATABASE Syntax ............................................................ 73413.1.2. ALTER TABLE Syntax .................................................................. 73413.1.3. CREATE DATABASE Syntax .......................................................... 739

    MySQL Reference Manual

    x

  • 13.1.4. CREATE INDEX Syntax ................................................................ 74013.1.5. CREATE TABLE Syntax ................................................................ 74113.1.6. DROP DATABASE Syntax .............................................................. 75313.1.7. DROP INDEX Syntax .................................................................... 75413.1.8. DROP TABLE Syntax .................................................................... 75413.1.9. RENAME TABLE Syntax ................................................................ 755

    13.2. Data Manipulation Statements .................................................................... 75613.2.1. DELETE Syntax ............................................................................ 75613.2.2. DO Syntax .................................................................................... 75913.2.3. HANDLER Syntax .......................................................................... 75913.2.4. INSERT Syntax ............................................................................ 76013.2.5. LOAD DATA INFILE Syntax ........................................................ 76713.2.6. REPLACE Syntax .......................................................................... 77513.2.7. SELECT Syntax ............................................................................ 77613.2.8. Subquery Syntax ........................................................................... 78713.2.9. TRUNCATE Syntax ........................................................................ 79813.2.10. UPDATE Syntax .......................................................................... 798

    13.3. MySQL Utility Statements ........................................................................ 80013.3.1. DESCRIBE Syntax (Get Information About Columns) ......................... 80013.3.2. USE Syntax .................................................................................. 801

    13.4. MySQL Transactional and Locking Statements ............................................. 80113.4.1. START TRANSACTION, COMMIT, and ROLLBACK Syntax ................. 80113.4.2. Statements That Cannot Be Rolled Back ............................................ 80313.4.3. Statements That Cause an Implicit Commit ........................................ 80313.4.4. SAVEPOINT and ROLLBACK TO SAVEPOINT Syntax ..................... 80413.4.5. LOCK TABLES and UNLOCK TABLES Syntax ................................. 80413.4.6. SET TRANSACTION Syntax .......................................................... 807

    13.5. Database Administration Statements ........................................................... 80813.5.1. Account Management Statements ..................................................... 80813.5.2. Table Maintenance Statements ......................................................... 81713.5.3. SET Syntax .................................................................................. 82313.5.4. SHOW Syntax ................................................................................ 82713.5.5. Other Administrative Statements ...................................................... 846

    13.6. Replication Statements ............................................................................. 85113.6.1. SQL Statements for Controlling Master Servers .................................. 85113.6.2. SQL Statements for Controlling Slave Servers .................................... 853

    13.7. SQL Syntax for Prepared Statements ........................................................... 86214. MySQL Storage Engines and Table Types .............................................................. 865

    14.1. The MyISAM Storage Engine ..................................................................... 86714.1.1. MyISAM Startup Options ................................................................ 86914.1.2. Space Needed for Keys .................................................................. 87014.1.3. MyISAM Table Storage Formats ...................................................... 87014.1.4. MyISAM Table Problems ................................................................ 873

    14.2. The MERGE Storage Engine ....................................................................... 87414.2.1. MERGE Table Problems .................................................................. 877

    14.3. The MEMORY (HEAP) Storage Engine .......................................................... 87814.4. The BDB (BerkeleyDB) Storage Engine .................................................... 880

    14.4.1. Operating Systems Supported by BDB ............................................... 88014.4.2. Installing BDB .............................................................................. 88114.4.3. BDB Startup Options ...................................................................... 88114.4.4. Characteristics of BDB Tables .......................................................... 88314.4.5. Things We Need to Fix for BDB ....................................................... 88414.4.6. Restrictions on BDB Tables ............................................................. 88514.4.7. Errors That May Occur When Using BDB Tables ................................ 885

    14.5. The EXAMPLE Storage Engine ................................................................... 88614.6. The FEDERATED Storage Engine ............................................................... 886

    14.6.1. Installing the FEDERATED Storage Engine ........................................ 88614.6.2. Description of the FEDERATED Storage Engine ................................. 886

    MySQL Reference Manual

    xi

  • 14.6.3. How to use FEDERATED Tables ...................................................... 88714.6.4. Limitations of the FEDERATED Storage Engine .................................. 888

    14.7. The ARCHIVE Storage Engine ................................................................... 88914.8. The CSV Storage Engine ........................................................................... 89014.9. The BLACKHOLE Storage Engine ............................................................... 89014.10. The ISAM Storage Engine ....................................................................... 891

    15. The InnoDB Storage Engine ............................................................................... 89415.1. InnoDB Overview .................................................................................. 89415.2. InnoDB Contact Information .................................................................... 89415.3. InnoDB in MySQL 3.23 .......................................................................... 89415.4. InnoDB Configuration ............................................................................. 89515.5. InnoDB Startup Options .......................................................................... 90015.6. Creating the InnoDB Tablespace ............................................................... 906

    15.6.1. Dealing with InnoDB Initialization Problems .................................... 90715.7. Creating InnoDB Tables .......................................................................... 907

    15.7.1. How to Use Transactions in InnoDB with Different APIs .................... 90815.7.2. Converting MyISAM Tables to InnoDB ............................................ 90815.7.3. How an AUTO_INCREMENT Column Works in InnoDB ..................... 90915.7.4. FOREIGN KEY Constraints ............................................................ 91015.7.5. InnoDB and MySQL Replication .................................................... 91415.7.6. Using Per-Table Tablespaces ........................................................... 915

    15.8. Adding and Removing InnoDB Data and Log Files ....................................... 91715.9. Backing Up and Recovering an InnoDB Database ........................................ 918

    15.9.1. Forcing Recovery .......................................................................... 91915.9.2. Checkpoints ................................................................................. 921

    15.10. Moving an InnoDB Database to Another Machine ...................................... 92115.11. InnoDB Transaction Model and Locking ................................................... 921

    15.11.1. InnoDB Lock Modes .................................................................. 92215.11.2. InnoDB and AUTOCOMMIT .......................................................... 92315.11.3. InnoDB and TRANSACTION ISOLATION LEVEL ........................ 92315.11.4. Consistent Non-Locking Read ....................................................... 92415.11.5. Locking Reads SELECT ... FOR UPDATE and SELECT ... LOCKIN SHARE MODE .................................................................................. 92515.11.6. Next-Key Locking: Avoiding the Phantom Problem ........................... 92615.11.7. An Example of How the Consistent Read Works in InnoDB ............... 92615.11.8. Locks Set by Different SQL Statements in InnoDB ........................... 92715.11.9. When Does MySQL Implicitly Commit or Roll Back a Transaction? ..... 92815.11.10. Deadlock Detection and Rollback ................................................. 92915.11.11. How to Cope with Deadlocks ....................................................... 929

    15.12. InnoDB Performance Tuning Tips ........................................................... 93015.12.1. SHOW INNODB STATUS and the InnoDB Monitors ........................ 932

    15.13. Implementation of Multi-Versioning .......................................................... 93615.14. Table and Index Structures ...................................................................... 937

    15.14.1. Physical Structure of an Index ........................................................ 93815.14.2. Insert Buffering ........................................................................... 93815.14.3. Adaptive Hash Indexes ................................................................. 93815.14.4. Physical Record Structure ............................................................. 939

    15.15. File Space Management and Disk I/O ........................................................ 93915.15.1. Disk I/O .................................................................................... 93915.15.2. Using Raw Devices for the Tablespace ............................................ 94015.15.3. File Space Management ................................................................ 94015.15.4. Defragmenting a Table ................................................................. 941

    15.16. InnoDB Error Handling ........................................................................... 94115.16.1. InnoDB Error Codes ................................................................... 94215.16.2. Operating System Error Codes ....................................................... 943

    15.17. Restrictions on InnoDB Tables ................................................................ 94815.18. InnoDB Troubleshooting ........................................................................ 950

    15.18.1. Troubleshooting InnoDB Data Dictionary Operations ....................... 950

    MySQL Reference Manual

    xii

  • 16. MySQL Cluster ................................................................................................. 95216.1. MySQL Cluster Overview ......................................................................... 95216.2. Basic MySQL Cluster Concepts ................................................................. 95416.3. Simple Multi-Computer How-To ................................................................ 955

    16.3.1. Hardware, Software, and Networking ................................................ 95716.3.2. Installation ................................................................................... 95716.3.3. Configuration ............................................................................... 95916.3.4. Initial Startup ............................................................................... 96116.3.5. Loading Sample Data and Performing Queries .................................... 96216.3.6. Safe Shutdown and Restart ............................................................. 966

    16.4. MySQL Cluster Configuration ................................................................... 96616.4.1. Building MySQL Cluster from Source Code ....................................... 96716.4.2. Installing the Software ................................................................... 96716.4.3. Quick Test Setup of MySQL Cluster ................................................. 96716.4.4. Configuration File ......................................................................... 969

    16.5. Process Management in MySQL Cluster ...................................................... 99516.5.1. MySQL Server Process Usage for MySQL Cluster .............................. 99516.5.2. ndbd, the Storage Engine Node Process ............................................ 99616.5.3. ndb_mgmd, the Management Server Process ..................................... 99716.5.4. ndb_mgm, the Management Client Process ........................................ 99816.5.5. Command Options for MySQL Cluster Processes ................................ 998

    16.6. Management of MySQL Cluster ................................................................ 100116.6.1. MySQL Cluster Startup Phases ....................................................... 100116.6.2. Commands in the Management Client .............................................. 100316.6.3. Event Reports Generated in MySQL Cluster ...................................... 100416.6.4. Single User Mode ........................................................................ 100916.6.5. On-line Backup of MySQL Cluster .................................................. 1010

    16.7. Using High-Speed Interconnects with MySQL Cluster ................................... 101316.7.1. Configuring MySQL Cluster to use SCI Sockets ................................ 101316.7.2. Understanding the Impact of Cluster Interconnects ............................. 1017

    16.8. Cluster Limitations in MySQL 4.1 ............................................................. 101816.9. MySQL Cluster in 5.0 and 5.1 ................................................................... 1021

    16.9.1. MySQL Cluster Changes in MySQL 5.0 ........................................... 102116.9.2. MySQL 5.1 Development Roadmap for MySQL Cluster ..................... 1022

    16.10. MySQL Cluster FAQ ............................................................................. 102316.11. MySQL Cluster Glossary ....................................................................... 1029

    17. Spatial Extensions in MySQL .............................................................................. 103317.1. Introduction ........................................................................................... 103317.2. The OpenGIS Geometry Model ................................................................. 1034

    17.2.1. The Geometry Class Hierarchy ....................................................... 103417.2.2. Class Geometry ......................................................................... 103517.2.3. Class Point ............................................................................... 103617.2.4. Class Curve ............................................................................... 103617.2.5. Class LineString ..................................................................... 103717.2.6. Class Surface ........................................................................... 103717.2.7. Class Polygon ........................................................................... 103817.2.8. Class GeometryCollection ..................................................... 103817.2.9. Class MultiPoint ..................................................................... 103817.2.10. Class MultiCurve ................................................................... 103917.2.11. Class MultiLineString ......................................................... 103917.2.12. Class MultiSurface ............................................................... 103917.2.13. Class MultiPolygon ............................................................... 1039

    17.3. Supported Spatial Data Formats ................................................................ 104017.3.1. Well-Known Text (WKT) Format ................................................... 104017.3.2. Well-Known Binary (WKB) Format ................................................ 1041

    17.4. Creating a Spatially Enabled MySQL Database ............................................ 104217.4.1. MySQL Spatial Data Types ............................................................ 104217.4.2. Creating Spatial Values ................................................................. 1043

    MySQL Reference Manual

    xiii

  • 17.4.3. Creating Spatial Columns .............................................................. 104617.4.4. Populating Spatial Columns ........................................................... 104617.4.5. Fetching Spatial Data .................................................................... 1047

    17.5. Analyzing Spatial Information .................................................................. 104817.5.1. Geometry Format Conversion Functions ........................................... 104817.5.2. Geometry Functions ................................................................... 104917.5.3. Functions That Create New Geometries from Existing Ones ................. 105517.5.4. Functions for Testing Spatial Relations Between Geometric Objects ...... 105617.5.5. Relations on Geometry Minimal Bounding Rectangles (MBRs) ............ 105617.5.6. Functions That Test Spatial Relationships Between Geometries ............ 1057

    17.6. Optimizing Spatial Analysis ..................................................................... 105817.6.1. Creating Spatial Indexes ................................................................ 105817.6.2. Using a Spatial Index .................................................................... 1060

    17.7. MySQL Conformance and Compatibility .................................................... 106117.7.1. GIS Features That Are Not Yet Implemented .................................... 1061

    18. Stored Procedures and Functions .......................................................................... 106218.1. Stored Procedures and the Grant Tables ...................................................... 106218.2. Stored Procedure Syntax .......................................................................... 1063

    18.2.1. CREATE PROCEDURE and CREATE FUNCTION ............................ 106318.2.2. ALTER PROCEDURE and ALTER FUNCTION ................................ 106618.2.3. DROP PROCEDURE and DROP FUNCTION .................................... 106618.2.4. SHOW CREATE PROCEDURE and SHOW CREATE FUNCTION ........ 106718.2.5. SHOW PROCEDURE STATUS and SHOW FUNCTION STATUS ........ 106718.2.6. CALL Statement ........................................................................... 106718.2.7. BEGIN ... END Compound Statement ......................................... 106818.2.8. DECLARE Statement ..................................................................... 106818.2.9. Variables in Stored Procedures ....................................................... 106818.2.10. Conditions and Handlers .............................................................. 106918.2.11. Cursors ..................................................................................... 107118.2.12. Flow Control Constructs .............................................................. 1072

    18.3. Stored Procedures, Functions, Triggers, and Replication: Frequently Asked Questions.................................................................................................................... 107518.4. Binary Logging of Stored Routines and Triggers .......................................... 1076

    19. Triggers .......................................................................................................... 108119.1. CREATE TRIGGER Syntax ..................................................................... 108119.2. DROP TRIGGER Syntax ......................................................................... 108319.3. Using Triggers ....................................................................................... 1083

    20. Views ............................................................................................................. 108720.1. ALTER VIEW Syntax ............................................................................. 108720.2. CREATE VIEW Syntax ........................................................................... 108720.3. DROP VIEW Syntax ............................................................................... 109320.4. SHOW CREATE VIEW Syntax ................................................................. 1093

    21. The INFORMATION_SCHEMA Information Database .............................................. 109421.1. INFORMATION_SCHEMA Tables ............................................................. 1095

    21.1.1. The INFORMATION_SCHEMA SCHEMATA Table ............................ 109621.1.2. The INFORMATION_SCHEMA TABLES Table ................................ 109621.1.3. The INFORMATION_SCHEMA COLUMNS Table .............................. 109721.1.4. The INFORMATION_SCHEMA STATISTICS Table ........................ 109821.1.5. The INFORMATION_SCHEMA USER_PRIVILEGES Table .............. 109921.1.6. The INFORMATION_SCHEMA SCHEMA_PRIVILEGES Table .......... 110021.1.7. The INFORMATION_SCHEMA TABLE_PRIVILEGES Table ............ 110021.1.8. The INFORMATION_SCHEMA COLUMN_PRIVILEGES Table .......... 110121.1.9. The INFORMATION_SCHEMA CHARACTER_SETS Table ................ 110121.1.10. The INFORMATION_SCHEMA COLLATIONS Table ....................... 110221.1.11. The INFORMATION_SCHEMA COLLA-TION_CHARACTER_SET_APPLICABILITY Table .................................. 110221.1.12. The INFORMATION_SCHEMA TABLE_CONSTRAINTS Table ......... 110221.1.13. The INFORMATION_SCHEMA KEY_COLUMN_USAGE Table ........... 1103

    MySQL Reference Manual

    xiv

  • 21.1.14. The INFORMATION_SCHEMA ROUTINES Table ........................... 110421.1.15. The INFORMATION_SCHEMA VIEWS Table ................................. 110521.1.16. The INFORMATION_SCHEMA TRIGGERS Table ........................... 110621.1.17. Other INFORMATION_SCHEMA Tables ......................................... 1107

    21.2. Extensions to SHOW Statements ................................................................. 110722. Precision Math ................................................................................................. 1110

    22.1. Types of Numeric Values ......................................................................... 111022.2. DECIMAL Data Type Changes .................................................................. 111122.3. Expression Handling ............................................................................... 111322.4. Rounding Behavior ................................................................................. 111422.5. Precision Math Examples ......................................................................... 1115

    23. MySQL APIs and Libraries ................................................................................. 112023.1. libmysqld, the Embedded MySQL Server Library ......................................... 1120

    23.1.1. Overview of the Embedded MySQL Server Library ............................ 112023.1.2. Compiling Programs with libmysqld ........................................... 112023.1.3. Restrictions when using the Embedded MySQL Server ....................... 112123.1.4. Options with the Embedded Server .................................................. 112123.1.5. Things left to do in Embedded Server (TODO) .................................. 112223.1.6. Embedded Server Examples ........................................................... 112223.1.7. Licensing the Embedded Server ...................................................... 1126

    23.2. MySQL C API ....................................................................................... 112623.2.1. C API Data types ......................................................................... 112623.2.2. C API Function Overview .............................................................. 113023.2.3. C API Function Descriptions .......................................................... 113423.2.4. C API Prepared Statements ............................................................ 118023.2.5. C API Prepared Statement Data types .............................................. 118023.2.6. C API Prepared Statement Function Overview ................................... 118323.2.7. C API Prepared Statement Function Descriptions ............................... 118623.2.8. C API Prepared statement problems ................................................. 120923.2.9. C API Handling of Multiple Query Execution .................................... 120923.2.10. C API Handling of Date and Time Values ....................................... 121023.2.11. C API Threaded Function Descriptions ........................................... 121123.2.12. C API Embedded Server Function Descriptions ................................ 121323.2.13. Common questions and problems when using the C API .................... 121423.2.14. Building Client Programs ............................................................. 121623.2.15. How to Make a Threaded Client .................................................... 1216

    23.3. MySQL PHP API ................................................................................... 121823.3.1. Common Problems with MySQL and PHP ........................................ 1218

    23.4. MySQL Perl API .................................................................................... 121923.5. MySQL C++ API ................................................................................... 1219

    23.5.1. Borland C++ ............................................................................... 121923.6. MySQL Python API ................................................................................ 122023.7. MySQL Tcl API ..................................................................................... 122023.8. MySQL Eiffel Wrapper ........................................................................... 122023.9. MySQL Program Development Utilities ...................................................... 1220

    23.9.1. msql2mysql Convert mSQL Programs for Use with MySQL ............ 122023.9.2. mysql_config Get Compile Options for Compiling Clients ............... 1221

    24. MySQL Connectors ........................................................................................... 122324.1. MySQL Connector/ODBC ....................................................................... 1223

    24.1.1. Introduction to MyODBC .............................................................. 122324.1.2. General Information About ODBC and MyODBC .............................. 122524.1.3. How to Install MyODBC ............................................................... 122824.1.4. Installing MyODBC from a Binary Distribution on Windows ............... 122924.1.5. Installing MyODBC from a Binary Distribution on Unix ..................... 122924.1.6. Installing MyODBC from a Source Distribution on Windows ............... 123024.1.7. Installing MyODBC from a Source Distribution on Unix ..................... 123224.1.8. Installing MyODBC from the BitKeeper Development Source Tree ....... 123724.1.9. MyODBC Configuration ............................................................... 1239

    MySQL Reference Manual

    xv

  • 24.1.10. MyODBC Connection-Related Issues ............................................. 125724.1.11. MyODBC and Microsoft Access ................................................... 125824.1.12. MyODBC and Microsoft VBA and ASP ......................................... 126324.1.13. MyODBC and Third-Party ODBC Tools ......................................... 126424.1.14. MyODBC General Functionality ................................................... 126524.1.15. Basic MyODBC Application Steps ................................................ 127024.1.16. MyODBC API Reference ............................................................. 127124.1.17. MyODBC Data Types ................................................................. 127624.1.18. MyODBC Error Codes ................................................................ 127724.1.19. MyODBC With VB: ADO, DAO and RDO ..................................... 127824.1.20. MyODBC with Microsoft .NET .................................................... 128224.1.21. Credits ..................................................................................... 1286

    24.2. MySQL Connector/NET .......................................................................... 128624.2.1. Introduction ................................................................................ 128624.2.2. Downloading and Installing MySQL Connector/NET .......................... 128724.2.3. Connector/NET Architecture .......................................................... 128824.2.4. Using MySQL Connector/NET ....................................................... 130224.2.5. MySQL Connector/NET Change History .......................................... 1322

    24.3. MySQL Connector/J ............................................................................... 133724.3.1. Basic JDBC concepts .................................................................... 133824.3.2. Installing Connector/J ................................................................... 134824.3.3. JDBC Reference .......................................................................... 135124.3.4. Using Connector/J with J2EE and Other Java Frameworks ................... 137524.3.5. Diagnosing Connector/J Problems ................................................... 138124.3.6. Changelog .................................................................................. 1387

    24.4. MySQL Connector/MXJ .......................................................................... 142424.4.1. Introduction ................................................................................ 142424.4.2. Support Platforms: ....................................................................... 142424.4.3. JUnit Test Requirements ................................................................ 142424.4.4. Running the JUnit Tests ................................................................ 142524.4.5. Running as part of the JDBC Driver ................................................. 142624.4.6. Running within a Java Object ......................................................... 142724.4.7. The MysqldResource API .............................................................. 142824.4.8. Running within a JMX Agent (custom) ............................................ 142924.4.9. Deployment in a standard JMX Agent environment (JBoss) ................. 143024.4.10. Installation ................................................................................ 1432

    25. Extending MySQL ............................................................................................ 143325.1. MySQL Internals .................................................................................... 1433

    25.1.1. MySQL Threads .......................................................................... 143325.1.2. MySQL Test Suite ....................................................................... 1433

    25.2. Adding New Functions to MySQL ............................................................. 143625.2.1. Features of the User-Defined Function Interface ................................. 143725.2.2. CREATE FUNCTION/DROP FUNCTION Syntax ............................. 143725.2.3. Adding a New User-defined Function .............................................. 143825.2.4. Adding a New Native Function ....................................................... 1446

    25.3. Adding New Procedures to MySQL ........................................................... 144825.3.1. Procedure Analyse ....................................................................... 144825.3.2. Writing a Procedure ...................................................................... 1448

    A. Problems and Common Errors .............................................................................. 1449A.1. How to Determine What Is Causing a Problem .............................................. 1449A.2. Common Errors When Using MySQL Programs ............................................ 1450

    A.2.1. Access denied ........................................................................ 1450A.2.2. Can't connect to [local] MySQL server ........................ 1450A.2.3. Client does not support authentication protocol .... 1453A.2.4. Password Fails When Entered Interactively ........................................ 1454A.2.5. Host 'host_name' is blocked ............................................ 1455A.2.6. Too many connections .......................................................... 1455A.2.7. Out of memory ........................................................................ 1455

    MySQL Reference Manual

    xvi

  • A.2.8. MySQL server has gone away .............................................. 1456A.2.9. Packet too large .................................................................. 1457A.2.10. Communication Errors and Aborted Connections .............................. 1458A.2.11. The table is full .............................................................. 1459A.2.12. Can't create/write to file ............................................ 1460A.2.13. Commands out of sync ........................................................ 1461A.2.14. Ignoring user ...................................................................... 1461A.2.15. Table 'tbl_name' doesn't exist .................................... 1461A.2.16. Can't initialize character set .................................... 1462A.2.17. File Not Found ............................................................................ 1462

    A.3. Installation-Related Issues ......................................................................... 1463A.3.1. Problems Linking to the MySQL Client Library .................................. 1463A.3.2. How to Run MySQL as a Normal User ............................................. 1464A.3.3. Problems with File Permissions ....................................................... 1465

    A.4. Administration-Related Issues .................................................................... 1465A.4.1. How to Reset the Root Password ...................................................... 1466A.4.2. What to Do If MySQL Keeps Crashing ............................................. 1468A.4.3. How MySQL Handles a Full Disk .................................................... 1470A.4.4. Where MySQL Stores Temporary Files ............................................. 1471A.4.5. How to Protect or Change the MySQL Socket File /tmp/mysql.sock 1471A.4.6. Time Zone Problems ..................................................................... 1472

    A.5. Query-Related Issues ............................................................................... 1472A.5.1. Case Sensitivity in Searches ............................................................ 1472A.5.2. Problems Using DATE Columns ...................................................... 1473A.5.3. Problems with NULL Values ........................................................... 1474A.5.4. Problems with Column Aliases ........................................................ 1475A.5.5. Rollback Failure for Non-Transactional Tables ................................... 1476A.5.6. Deleting Rows from Related Tables .................................................. 1476A.5.7. Solving Problems with No Matching Rows ........................................ 1477A.5.8. Problems with Floating-Point Comparisons ........................................ 1477

    A.6. Optimizer-Related Issues .......................................................................... 1480A.7. Table Definition-Related Issues .................................................................. 1480

    A.7.1. Problems with ALTER TABLE ....................................................... 1480A.7.2. How to Change the Order of Columns in a Table ................................. 1481A.7.3. TEMPORARY TABLE Problems ...................................................... 1481

    A.8. Known Issues in MySQL .......................................................................... 1482A.8.1. Issues in MySQL 3.23 Fixed in a Later MySQL Version ...................... 1482A.8.2. Issues in 4.0 Fixed in a Later MySQL Version .................................... 1482A.8.3. Issues in 4.1 Fixed in a Later MySQL Version .................................... 1483A.8.4. Open Issues in MySQL .................................................................. 1483

    B. Error Codes and Messages ................................................................................... 1488C. Credits ............................................................................................................. 1522

    C.1. Developers at MySQL AB ......................................................................... 1522C.2. Contributors to MySQL ............................................................................ 1527C.3. Documenters and translators ...................................................................... 1532C.4. Libraries used by and included with MySQL ................................................. 1533C.5. Packages that support MySQL ................................................................... 1534C.6. Tools that were used to create MySQL ......................................................... 1534C.7. Supporters of MySQL .............................................................................. 1535

    D. MySQL and the Future (the TODO) ...................................................................... 1536D.1. New Features in MySQL 5.0 ..................................................................... 1536D.2. New Features Planned for 5.1 .................................................................... 1536D.3. New Features Planned for the Near Future .................................................... 1536D.4. New Features Planned for the Mid-Term Future ............................................ 1536D.5. New Features We Don't Plan to Implement ................................................... 1536

    E. MySQL Change History ...................................................................................... 1537E.1. Changes in release 5.0.x (Development) ....................................................... 1537

    E.1.1. Changes in release 5.0.13 (Not yet released) ....................................... 1538

    MySQL Reference Manual

    xvii

  • E.1.2. Changes in release 5.0.12 (To be released soon) .................................. 1540E.1.3. Changes in release 5.0.11 (06 Aug 2005) ........................................... 1546E.1.4. Changes in release 5.0.10 (27 July 2005) ............................................ 1548E.1.5. Changes in release 5.0.9 (15 July 2005) ............................................. 1552E.1.6. Changes in release 5.0.8 (not released) .............................................. 1555E.1.7. Changes in release 5.0.7 (10 June 2005) ............................................. 1560E.1.8. Changes in release 5.0.6 (26 May 2005) ............................................. 1563E.1.9. Changes in release 5.0.5 (not released) .............................................. 1568E.1.10. Changes in release 5.0.4 (16 Apr 2005) ............................................ 1570E.1.11. Changes in release 5.0.3 (23 Mar 2005: Beta) .................................... 1573E.1.12. Changes in release 5.0.2 (01 Dec 2004) ............................................ 1584E.1.13. Changes in release 5.0.1 (27 Jul 2004) ............................................. 1587E.1.14. Changes in release 5.0.0 (22 Dec 2003: Alpha) .................................. 1591

    E.2. Changes in release 4.1.x (Production) .......................................................... 1592E.2.1. ................................................................................................... 1593E.2.2. Changes in release 4.1.14 (17 Aug 2005) ........................................... 1595E.2.3. Changes in release 4.1.13 (15 Jul 2005) ............................................. 1598E.2.4. Changes in release 4.1.12 (13 May 2005) ........................................... 1605E.2.5. Changes in release 4.1.11 (01 Apr 2005) ............................................ 1609E.2.6. Changes in release 4.1.10 (12 Feb 2005) ............................................ 1616E.2.7. Changes in release 4.1.9 (11 Jan 2005) .............................................. 1621E.2.8. Changes in release 4.1.8 (14 Dec 2004) ............................................. 1623E.2.9. Changes in release 4.1.7 (23 Oct 2004: Production) .............................. 1627E.2.10. Changes in release 4.1.6 (10 Oct 2004) ............................................ 1629E.2.11. Changes in release 4.1.5 (16 Sep 2004) ............................................ 1631E.2.12. Changes in release 4.1.4 (26 Aug 2004: Gamma) ............................... 1632E.2.13. Changes in release 4.1.3 (28 Jun 2004: Beta) ..................................... 1634E.2.14. Changes in release 4.1.2 (28 May 2004) ........................................... 1637E.2.15. Changes in release 4.1.1 (01 Dec 2003) ............................................ 1647E.2.16. Changes in release 4.1.0 (03 Apr 2003: Alpha) .................................. 1653

    E.3. Changes in release 4.0.x (Production) .......................................................... 1656E.3.1. Changes in release 4.0.26 (Not yet released) ....................................... 1656E.3.2. Changes in release 4.0.25 (05 July 2005) ............................................ 1657E.3.3. Changes in release 4.0.24 (04 Mar 2005) ............................................ 1659E.3.4. Changes in release 4.0.23 (18 Dec 2004) ............................................ 1661E.3.5. Changes in release 4.0.22 (27 Oct 2004) ............................................ 1663E.3.6. Changes in release 4.0.21 (06 Sep 2004) ............................................ 1665E.3.7. Changes in release 4.0.20 (17 May 2004) ........................................... 1667E.3.8. Changes in release 4.0.19 (04 May 2004) ........................................... 1668E.3.9. Changes in release 4.0.18 (12 Feb 2004) ............................................ 1672E.3.10. Changes in release 4.0.17 (14 Dec 2003) .......................................... 1675E.3.11. Changes in release 4.0.16 (17 Oct 2003) ........................................... 1678E.3.12. Changes in release 4.0.15 (03 Sep 2003) .......................................... 1680E.3.13. Changes in release 4.0.14 (18 Jul 2003) ............................................ 1684E.3.14. Changes in release 4.0.13 (16 May 2003) ......................................... 1688E.3.15. Changes in release 4.0.12 (15 Mar 2003: Production) ......................... 1692E.3.16. Changes in release 4.0.11 (20 Feb 2003) .......................................... 1694E.3.17. Changes in release 4.0.10 (29 Jan 2003) ........................................... 1695E.3.18. Changes in release 4.0.9 (09 Jan 2003) ............................................. 1696E.3.19. Changes in release 4.0.8 (07 Jan 2003) ............................................. 1697E.3.20. Changes in release 4.0.7 (20 Dec 2002) ............................................ 1697E.3.21. Changes in release 4.0.6 (14 Dec 2002: Gamma) ............................... 1698E.3.22. Changes in release 4.0.5 (13 Nov 2002) ........................................... 1699E.3.23. Changes in release 4.0.4 (29 Sep 2002) ............................................ 1701E.3.24. Changes in release 4.0.3 (26 Aug 2002: Beta) ................................... 1703E.3.25. Changes in release 4.0.2 (01 Jul 2002) ............................................. 1705E.3.26. Changes in release 4.0.1 (23 Dec 2001) ............................................ 1709E.3.27. Changes in release 4.0.0 (Oct 2001: Alpha) ....................................... 1710

    MySQL Reference Manual

    xviii

  • E.4. Changes in release 3.23.x (Recent; still supported) ......................................... 1712E.4.1. Changes in release 3.23.59 (not released yet) ...................................... 1713E.4.2. Changes in release 3.23.58 (11 Sep 2003) .......................................... 1714E.4.3. Changes in release 3.23.57 (06 Jun 2003) ........................................... 1714E.4.4. Changes in release 3.23.56 (13 Mar 2003) .......................................... 1715E.4.5. Changes in release 3.23.55 (23 Jan 2003) ........................................... 1717E.4.6. Changes in release 3.23.54 (05 Dec 2002) .......................................... 1717E.4.7. Changes in release 3.23.53 (09 Oct 2002) ........................................... 1718E.4.8. Changes in release 3.23.52 (14 Aug 2002) .......................................... 1719E.4.9. Changes in release 3.23.51 (31 May 2002) ......................................... 1720E.4.10. Changes in release 3.23.50 (21 Apr 2002) ......................................... 1721E.4.11. Changes in release 3.23.49 (14 Feb 2002) ......................................... 1722E.4.12. Changes in release 3.23.48 (07 Feb 2002) ......................................... 1722E.4.13. Changes in release 3.23.47 (27 Dec 2001) ........................................ 1723E.4.14. Changes in release 3.23.46 (29 Nov 2001) ........................................ 1723E.4.15. Changes in release 3.23.45 (22 Nov 2001) ........................................ 1724E.4.16. Changes in release 3.23.44 (31 Oct 2001) ......................................... 1724E.4.17. Changes in release 3.23.43 (04 Oct 2001) ......................................... 1726E.4.18. Changes in release 3.23.42 (08 Sep 2001) ......................................... 1726E.4.19. Changes in release 3.23.41 (11 Aug 2001) ........................................ 1727E.4.20. Changes in release 3.23.40 (18 Jul 2001) .......................................... 1728E.4.21. Changes in release 3.23.39 (12 Jun 2001) ......................................... 1728E.4.22. Changes in release 3.23.38 (09 May 2001) ........................................ 1729E.4.23. Changes in release 3.23.37 (17 Apr 2001) ......................................... 1730E.4.24. Changes in release 3.23.36 (27 Mar 2001) ........................................ 1731E.4.25. Changes in release 3.23.35 (15 Mar 2001) ........................................ 1731E.4.26. Changes in release 3.23.34a (11 Mar 2001) ....................................... 1732E.4.27. Changes in release 3.23.34 (10 Mar 2001) ........................................ 1732E.4.28. Changes in release 3.23.33 (09 Feb 2001) ......................................... 1733E.4.29. Changes in release 3.23.32 (22 Jan 2001) ......................................... 1734E.4.30. Changes in release 3.23.31 (17 Jan 2001: Production) ......................... 1735E.4.31. Changes in release 3.23.30 (04 Jan 2001) ......................................... 1736E.4.32. Changes in release 3.23.29