Home Database Mysql Tutorial Summary of basic knowledge of mysql

Summary of basic knowledge of mysql

Jan 17, 2017 am 10:05 AM
mysql php+mysql database

This article brings you a summary of the basic knowledge of mysql. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

1. Startup and Exit

1. Enter MySQL:

Start MySQL Command Line Client (MySQL DOS interface), directly Just enter the password you used during installation. The prompt at this time is: mysql>

or open the terminal and enter the SQL statement:

mysql –uroot –p123

2. Exit MySQL:

quit or exit

2. Library operations

1. Create database

Command: create database
For example : Create a database named xhkdb
mysql> create database xhkdb;

2. Display all databases

Command: show databases (note: there is an s at the end)
mysql> show databases;

3. Delete database
Command: drop database
For example: delete the database named xhkdb
mysql> drop database xhkdb;

4. Connect to the database
Command: use
For example: if the xhkdb database exists, try to access it:
mysql> use xhkdb;
Screen prompt: Database changed

5. The currently selected (connected) database
mysql> select database();

6. The table information contained in the current database:
mysql> show tables; ( Note: there is an s at the end

3. Table operation, you should connect to a database before the operation
1. Create table
Command: create table

[,.. ]);

mysql> create table MyClass(
> id int(4) not null primary key auto_increment,
> name char(20) not null,
> sex int(4) not null default '0',
> degree double(16,2));

2. Get table structure
command : desc table name, or show columns from table name

mysql> desc MyClass;
mysql> show columns from MyClass;

3. Delete table
Command: drop table


For example: delete the table named MyClass
mysql> drop table MyClass;

4. Insert data
Command: insert into

[( [,..For example, insert two records into the table MyClass. These two records represent: the score of Tom named No. 1 is 96.45, and the score of Tom No. 2 is 96.45. The score of Joan, numbered 3, is 82.99, and the score of Wang, numbered 3, is 96.5.

mysql> insert into MyClass values(1,'Tom',96.45),(2,'Joan',82.99), (2,'Wang', 96.59);

5. Query the data in the table
1), Query all rows
command : select from < table name> where < expression>
For example: view all data in table MyClass
mysql> select * from MyClass;
2), Query the first few rows of data
For example: View the first 2 rows of data in the table MyClass
mysql> select * from MyClass order by id limit 0,2;

6. Delete Data in the table
Command: delete from table name where expression
For example: delete the record numbered 1 in the table MyClass
mysql> delete from MyClass where id=1;

7, Modify the data in the table:
update table name set field = new value,... where condition
mysql> update MyClass set name='Mary' where id=1;

8. Add to the table Field:
Command: alter table table name add field type other;
For example: a field passtest is added to the table MyClass, the type is int(4), the default value is 0
mysql> alter table MyClass add passtest int(4) default '0'

9. Change the table name:
Command: rename table original table name to new table name;
For example: change the name of table MyClass to YouClass
mysql> rename table MyClass to YouClass;
Update field content
update table name set field name = new content
update table name set field name = replace(field name,'old content','new Content');
Add 4 spaces in front of the article
update article set content=concat(' ',content);

4. Introduction to field types
1 . INT[(M)] type: normal size integer type
2. DOUBLE[(M,D)] [ZEROFILL] type: Normal size (double precision) floating point number type
3. DATE date type: The supported range is 1000-01-01 to 9999-12-31. MySQL displays DATE values ​​in YYYY-MM-DD format, but allows you to use strings or numbers to assign values ​​to DATE columns
4. CHAR(M) type: fixed-length string type. When stored, the right side is always filled with spaces to the specified length
5. BLOB TEXT type, the maximum length is 65535 (2^16-1) characters.
6. VARCHAR type: variable length string type

5. Database backup
1. Export the entire database
mysqldump -u username-p --default-character-set= latin1 database name> Exported file name (the default encoding of the database is latin1)
mysqldump -u wcnc -p smgp_apps_wcnc > wcnc.sql

2. Export a table
mysqldump -u user name -p database name table name> exported file name
mysqldump -u wcnc -p smgp_apps_wcnc users> wcnc_users.sql

3. Export a database structure
mysqldump -u wcnc -p -d – add-drop-table smgp_apps_wcnc >d:wcnc_db.sql
-d No data –add-drop-table Add a drop table before each create statement

4. Import database
Commonly used source commands
Enter the mysql database console,
For example, mysql -u root -p
mysql>use database
Then use the source command, the following parameters are Script file (such as the .sql used here)
mysql>source d:wcnc_db.sql

Related recommendations:

mysql basic knowledge ( mysql tutorial for newbies)

Summary of the basic knowledge of mysql

PHP and MySQL basic tutorial (1)

PHP and MySQL Basic Tutorial (2)

PHP and MySQL Basic Tutorial (3)

PHP and MySQL Basic Tutorial ( 4)

mysql manual tutorial: //m.sbmmt.com/course/37.html

mysql video tutorial: http ://m.sbmmt.com/course/list/51.html

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

PHP Tutorial
1504
276
How to set environment variables in PHP environment Description of adding PHP running environment variables How to set environment variables in PHP environment Description of adding PHP running environment variables Jul 25, 2025 pm 08:33 PM

There are three main ways to set environment variables in PHP: 1. Global configuration through php.ini; 2. Passed through a web server (such as SetEnv of Apache or fastcgi_param of Nginx); 3. Use putenv() function in PHP scripts. Among them, php.ini is suitable for global and infrequently changing configurations, web server configuration is suitable for scenarios that need to be isolated, and putenv() is suitable for temporary variables. Persistence policies include configuration files (such as php.ini or web server configuration), .env files are loaded with dotenv library, and dynamic injection of variables in CI/CD processes. Security management sensitive information should be avoided hard-coded, and it is recommended to use.en

How to develop AI intelligent form system with PHP PHP intelligent form design and analysis How to develop AI intelligent form system with PHP PHP intelligent form design and analysis Jul 25, 2025 pm 05:54 PM

When choosing a suitable PHP framework, you need to consider comprehensively according to project needs: Laravel is suitable for rapid development and provides EloquentORM and Blade template engines, which are convenient for database operation and dynamic form rendering; Symfony is more flexible and suitable for complex systems; CodeIgniter is lightweight and suitable for simple applications with high performance requirements. 2. To ensure the accuracy of AI models, we need to start with high-quality data training, reasonable selection of evaluation indicators (such as accuracy, recall, F1 value), regular performance evaluation and model tuning, and ensure code quality through unit testing and integration testing, while continuously monitoring the input data to prevent data drift. 3. Many measures are required to protect user privacy: encrypt and store sensitive data (such as AES

How to build an online customer service robot with PHP. PHP intelligent customer service implementation technology How to build an online customer service robot with PHP. PHP intelligent customer service implementation technology Jul 25, 2025 pm 06:57 PM

PHP plays the role of connector and brain center in intelligent customer service, responsible for connecting front-end input, database storage and external AI services; 2. When implementing it, it is necessary to build a multi-layer architecture: the front-end receives user messages, the PHP back-end preprocesses and routes requests, first matches the local knowledge base, and misses, call external AI services such as OpenAI or Dialogflow to obtain intelligent reply; 3. Session management is written to MySQL and other databases by PHP to ensure context continuity; 4. Integrated AI services need to use Guzzle to send HTTP requests, safely store APIKeys, and do a good job of error handling and response analysis; 5. Database design must include sessions, messages, knowledge bases, and user tables, reasonably build indexes, ensure security and performance, and support robot memory

How to make PHP container support automatic construction? Continuously integrated CI configuration method of PHP environment How to make PHP container support automatic construction? Continuously integrated CI configuration method of PHP environment Jul 25, 2025 pm 08:54 PM

To enable PHP containers to support automatic construction, the core lies in configuring the continuous integration (CI) process. 1. Use Dockerfile to define the PHP environment, including basic image, extension installation, dependency management and permission settings; 2. Configure CI/CD tools such as GitLabCI, and define the build, test and deployment stages through the .gitlab-ci.yml file to achieve automatic construction, testing and deployment; 3. Integrate test frameworks such as PHPUnit to ensure that tests are automatically run after code changes; 4. Use automated deployment strategies such as Kubernetes to define deployment configuration through the deployment.yaml file; 5. Optimize Dockerfile and adopt multi-stage construction

How to use PHP combined with AI to analyze video content PHP intelligent video tag generation How to use PHP combined with AI to analyze video content PHP intelligent video tag generation Jul 25, 2025 pm 06:15 PM

The core idea of PHP combining AI for video content analysis is to let PHP serve as the backend "glue", first upload video to cloud storage, and then call AI services (such as Google CloudVideoAI, etc.) for asynchronous analysis; 2. PHP parses the JSON results, extract people, objects, scenes, voice and other information to generate intelligent tags and store them in the database; 3. The advantage is to use PHP's mature web ecosystem to quickly integrate AI capabilities, which is suitable for projects with existing PHP systems to efficiently implement; 4. Common challenges include large file processing (directly transmitted to cloud storage with pre-signed URLs), asynchronous tasks (introducing message queues), cost control (on-demand analysis, budget monitoring) and result optimization (label standardization); 5. Smart tags significantly improve visual

How to build an independent PHP task container environment. How to configure the container for running PHP timed scripts How to build an independent PHP task container environment. How to configure the container for running PHP timed scripts Jul 25, 2025 pm 07:27 PM

Building an independent PHP task container environment can be implemented through Docker. The specific steps are as follows: 1. Install Docker and DockerCompose as the basis; 2. Create an independent directory to store Dockerfile and crontab files; 3. Write Dockerfile to define the PHPCLI environment and install cron and necessary extensions; 4. Write a crontab file to define timing tasks; 5. Write a docker-compose.yml mount script directory and configure environment variables; 6. Start the container and verify the log. Compared with performing timing tasks in web containers, independent containers have the advantages of resource isolation, pure environment, strong stability, and easy expansion. To ensure logging and error capture

How to build a log management system with PHP PHP log collection and analysis tool How to build a log management system with PHP PHP log collection and analysis tool Jul 25, 2025 pm 08:48 PM

Select logging method: In the early stage, you can use the built-in error_log() for PHP. After the project is expanded, be sure to switch to mature libraries such as Monolog, support multiple handlers and log levels, and ensure that the log contains timestamps, levels, file line numbers and error details; 2. Design storage structure: A small amount of logs can be stored in files, and if there is a large number of logs, select a database if there is a large number of analysis. Use MySQL/PostgreSQL to structured data. Elasticsearch Kibana is recommended for semi-structured/unstructured. At the same time, it is formulated for backup and regular cleaning strategies; 3. Development and analysis interface: It should have search, filtering, aggregation, and visualization functions. It can be directly integrated into Kibana, or use the PHP framework chart library to develop self-development, focusing on the simplicity and ease of interface.

How to use Kubernetes to keep PHP environment consistent Production and local container configuration standards How to use Kubernetes to keep PHP environment consistent Production and local container configuration standards Jul 25, 2025 pm 06:21 PM

To solve the problem of inconsistency between PHP environment and production, the core is to use Kubernetes' containerization and orchestration capabilities to achieve environmental consistency. The specific steps are as follows: 1. Build a unified Docker image, including all PHP versions, extensions, dependencies and web server configurations to ensure that the same image is used in development and production; 2. Use Kubernetes' ConfigMap and Secret to manage non-sensitive and sensitive configurations, and achieve flexible switching of different environment configurations through volume mounts or environment variable injection; 3. Ensure application behavior consistency through unified Kubernetes deployment definition files (such as Deployment and Service) and include in version control; 4.

See all articles