<< previous page   --   table of contents   --   next page >>
| | | | | | | |
  • Return to Table of Contents
  • Table of Contents

    1. General Information
    2. MySQL Installation
    3. Tutorial Introduction
    4. Database Administration
    5. MySQL Optimisation
    6. MySQL Language Reference
    7. MySQL Table Types
    8. MySQL APIs
    9. Extending MySQL

    Chapter 4:  Database Administration 267 There are some other states that are not mentioned previously, but most of these are only useful to nd bugs in mysqld. 4.5.6.7  SHOW GRANTS SHOW GRANTS FOR user lists the grant commands that must be issued to duplicate the grants for a user. mysql> SHOW GRANTS FOR root@localhost; +---------------------------------------------------------------------+ | Grants for root@localhost | +---------------------------------------------------------------------+ | GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION | +---------------------------------------------------------------------+ 4.5.6.8  SHOW CREATE TABLE Shows a CREATE TABLE statement that will create the given table: mysql> SHOW CREATE TABLE t\G *************************** 1. row *************************** Table: t Create Table: CREATE TABLE t ( id int(11) default NULL auto_increment, s char(60) default NULL, PRIMARY KEY (id) ) TYPE=MyISAM SHOW CREATE TABLE  will  quote  table  and  column  names  according  to  SQL_QUOTE_SHOW_ CREATE option.  Section 5.5.6 [SET SQL_QUOTE_SHOW_CREATE], page 369. 4.6  MySQL Localisation and International Usage 4.6.1  The Character Set Used for Data and Sorting By default, MySQL uses the ISO-8859-1 (Latin1) character set with sorting according to Swedish/Finnish.  This is the character set suitable in the USA and western Europe. All standard MySQL binaries are compiled with --with-extra-charsets=complex.  This will  add  code  to  all  standard  programs  to  be  able  to  handle  latin1  and  all  multi-byte character sets within the binary.  Other character sets will be loaded from a character-set de nition le when needed. The  character  set  determines  what  characters  are  allowed  in  names  and  how  things  are sorted by the ORDER BY and GROUP BY clauses of the SELECT statement.
     

    Customer Support CentreMySQL Reference Manual

    Web Hosting Services
    UNIX WEB HOSTING
    SUPPORT & FAQ's
    TERMS OF USE
    Domain Services
    DOMAIN REGISTRATION
    MANAGE YOUR ACCOUNT
    SUPPORT & FAQ's
    TERMS OF USE
    SITE MAP
    Home
    Hosting Plans | Domain Registration | About Us | Contact Us | Site Map
    Terms of Use | Privacy Policy | Guarantees
    Merchant Accounts

    SpiritHost - web hosting for spiritual and education sites
    SpiritHit.com - Religious and Spiritual Portal
  • Return to Table of Contents
  • Back to top

  • Web Hosting: Manuals & FAQ's

    1. Unix-Based Web Hosting
    2. Unix Dedicated Servers
    3. Windows Dedicated Servers
    4. CuteFTP User’s Guide
    5. CuteHTML User’s Guide
    6. WS_FTP Pro User's Guide
    7. Miva Order User's Guide
    8. Miva Merchant User's Guide