MySQL的常用命令集锦_MySQL
下面是我们经常会用到且非常有用的MySQL命令。下面你看到#表示在Unix命令行下执行命令,看到mysql>表示当前已经登录MySQL服务器,是在mysql客户端执行mysql命令。
登录MySQL,如果连接远程数据库,需要用-h指定hostname。
登录MySQL,如果连接远程数据库,需要用-h指定hostname。
# [mysql dir]/bin/mysql -h hostname -u root -p
创建一个数据库。
mysql> create database [databasename];
列出所有数据库。
mysql> show databases;
切换到一个数据库。
mysql> use [db name];
显示一个数据库的所有表。
mysql> show tables;
查看数据表的字段格式。
mysql> describe [table name];
删除一个数据库。
mysql> drop database [database name];
删除一个数据表。
mysql> drop table [table name];
显示一个数据表的所有数据。
mysql> SELECT * FROM [table name];
返回指定数据表的各列信息。
mysql> show columns from [table name];
使用值“whatever”过滤显示选定的某些行。
mysql> SELECT * FROM [table name] WHERE [field name] = "whatever";
显示所有包含name为”Bob”和phone number为“3444444”的记录。
mysql> SELECT * FROM [table name] WHERE name = "Bob" AND phone_number = '3444444';
显示所有不包含name为”Bob”和phone number为“3444444”的记录,并以phone_number字段排序。
mysql> SELECT * FROM [table name] WHERE name != "Bob" AND phone_number = '3444444' order by phone_number;
显示所有的name以字母“bob”开头和phone number为“3444444”的记录。
mysql> SELECT * FROM [table name] WHERE name like "Bob%" AND phone_number = '3444444';
显示name以字母“bob”开头和phone number为“3444444”的第1至第5条记录。
mysql> SELECT * FROM [table name] WHERE name like "Bob%" AND phone_number = '3444444' limit 1,5;
使用正则表达式查找记录。使用“正则表达式二进制”强制区分大小写。此命令查找以a开头的任何记录。
mysql> SELECT * FROM [table name] WHERE rec RLIKE "^a";
返回唯一不同的记录。
mysql> SELECT DISTINCT [column name] FROM [table name];
以升序或降序显示选定的记录。
mysql> SELECT [col1],[col2] FROM [table name] ORDER BY [col2] DESC;
返回行数。
mysql> SELECT COUNT(*) FROM [table name];
统计指定列值的总和。
mysql> SELECT SUM(*) FROM [table name];
联结表。
mysql> select lookup.illustrationid, lookup.personid,person.birthday from lookup left join person on lookup.personid=person.personid=statement to join birthday in person table with primary illustration id;
新建一个用户。以root登录。切换到mysql数据库,创建用户,刷新权限。
# mysql -u root -p mysql> use mysql; mysql> INSERT INTO user (Host,User,Password) VALUES('%','username',PASSWORD('password')); mysql> flush privileges;
从unix命令行更改用户密码。
# [mysql dir]/bin/mysqladmin -u username -h hostname.blah.org -p password 'new-password'
从mysql命令行更改用户密码。以root登录,设置密码,更新权限。
# /etc/init.d/mysql stop # mysqld_safe --skip-grant-tables & # mysql -u root
mysql> use mysql; mysql> update user set password=PASSWORD("newrootpassword") where User='root'; mysql> flush privileges; mysql> quit
# /etc/init.d/mysql stop # /etc/init.d/mysql start
root密码为空时,设置root密码。
# mysqladmin -u root password newpassword
更新root密码。
# mysqladmin -u root -p oldpassword newpassword
允许用户“bob”从localhost以密码“passwd”连接服务器。以root登录,切换mysql数据库。设置权限,更新权限。
# mysql -u root -p
mysql> use mysql; mysql> grant usage on *.* to bob@localhost identified by 'passwd'; mysql> flush privileges;
如果不想手工输入密码 请使用--password 参数
mysqldump -h database_ip -u Username --password=123456 --opt databasename > backup-file.sql mysqldump -h database_ip -d -u Username --password=123456 databasename >database_structure.sql
为数据库db设置权限。以root登录,切换到mysql数据库,授予权限,更新权限。
# mysql -u root -p
mysql> use mysql; mysql> INSERT INTO db (Host,Db,User,Select_priv,Insert_priv,Update_priv,Delete_priv,Create_priv,Drop_priv) VALUES ('%','databasename','username','Y','Y','Y','Y','Y','N'); mysql> flush privileges;
或者
mysql> grant all privileges on databasename.* to username@localhost; mysql> flush privileges;
更新已存在表的数据。
mysql> UPDATE [table name] SET Select_priv = 'Y',Insert_priv = 'Y',Update_priv = 'Y' where [field name] = 'user';
删除表中[field name] = ‘whatever'的行。
mysql> DELETE from [table name] where [field name] = 'whatever';
更新数据库的权限/特权。
mysql> flush privileges;
删除列。
mysql> alter table [table name] drop column [column name];
新增列到db。
mysql> alter table [table name] add column [new column name] varchar (20);
更改列名。
mysql> alter table [table name] change [old column name] [new column name] varchar (50);
增加唯一的列。
mysql> alter table [table name] add unique ([column name]);
设置列值大点。
mysql> alter table [table name] modify [column name] VARCHAR(3);
删除唯一列。
mysql> alter table [table name] drop index [colmn name];
导入一个CSV文件到表。
mysql> LOAD DATA INFILE '/tmp/filename.csv' replace INTO TABLE [table name] FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' (field1,field2,field3);
导出所有数据库到sql文件。
# [mysql dir]/bin/mysqldump -u root -ppassword --opt >/tmp/alldatabases.sql
导出一个数据库。
# [mysql dir]/bin/mysqldump -u username -ppassword --databases databasename >/tmp/databasename.sql
从一个数据库导出一个表。
# [mysql dir]/bin/mysqldump -c -u username -ppassword databasename tablename > /tmp/databasename.tablename.sql
从sql文件还原数据库(数据表)。
# [mysql dir]/bin/mysql -u username -ppassword databasename < /tmp/databasename.sql
创建数据表例1。
mysql> CREATE TABLE [table name] (firstname VARCHAR(20), middleinitial VARCHAR(3), lastname VARCHAR(35),suffix VARCHAR(3),officeid VARCHAR(10),userid VARCHAR(15),username VARCHAR(8),email VARCHAR(35),phone VARCHAR(25), groups VARCHAR(15),datestamp DATE,timestamp time,pgpemail VARCHAR(255));
创建数据表例2。
mysql> create table [table name] (personid int(50) not null auto_increment primary key,firstname varchar(35),middlename varchar(50),lastnamevarchar(50) default 'bato');
将查询结果保存到文件
select title from book into outfile '/tmp/outfile.txt';
查找表中多余的重复记录,重复记录是根据某个字段(peopleId)来判断
select * from people where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1);
查询表中不重复记录(排除重复记录)
select * from phome_ecms_wma where title in (select distinct title from phome_ecms_wma);
删除表中重复记录,重复记录是根据某个字段(title)来判断
select *,count(distinct title) INTO OUTFILE '/tmp/table.bak' from phome_ecms_wma group by title; delete from phome_ecms_wma; LOAD DATA INFILE '/tmp/table.bak' REPLACE INTO TABLE phome_ecms_wma character set utf8;
随机选取记录
SELECT *FROM url ORDER BY RAND() LIMIT 5;
查询数据库当前编码
mysql> show variables like "character_set%";
修改表字段类型
mysql> alter table table_name change last_action last_action datetime NOT NULL default '0000-00-00 00:00:00';
给表添加一个新字段
mysql> ALTER TABLE host ADD ks_mac VARCHAR(100);
从表中删除一个字段
mysql> ALTER TABLE table_name DROP field_name;
重命名表
mysql>alter table t1 rename t2;
给字段加索引
mysql> alter table tablename add index 索引名 (字段名1[,字段名2 …]); mysql> alter table tablename add index emp_name (name);
加主关键字的索引
mysql> alter table tablename add primary key(id);
加唯一限制条件的索引
mysql> alter table tablename add unique emp_name2(cardnumber);
删除某个索引
mysql>alter table tablename drop index emp_name;
远程访问mysql 设置
mysql> GRANT ALL PRIVILEGES ON database_test.* to root@192.168.1.9 IDENTIFIED BY '123456'; mysql> FLUSH PRIVILEGES;

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Big data structure processing skills: Chunking: Break down the data set and process it in chunks to reduce memory consumption. Generator: Generate data items one by one without loading the entire data set, suitable for unlimited data sets. Streaming: Read files or query results line by line, suitable for large files or remote data. External storage: For very large data sets, store the data in a database or NoSQL.

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.
