


Detailed introduction to Mysql tables, columns, database additions, deletions, modifications and queries
IntroductionBasic operations of mysql database, including editing, deleting, checking, and modifying. Common database statements such as outer joins of query tables. Set the database to be connectable by other computers.
The following is some basic SQL knowledge that I have summarized, mainly to better reference and help other beginners in the future, while recording my own growth, and also writing some slightly technical SQL statements.
Directory:
1. Create a new database
2. Create a new data table
3. View the table structure
4. Add, delete, modify and check
CREATE DATABASE mytest CHARACTER SET gbk #删除数据库 DROP DATABASE mytest 表的操作 #创建表(create table 表名(columns)) CREATE TABLE students( id INT PRIMARY KEY, NAME CHAR(10) NOT NULL, sex CHAR(4) NOT NULL ); #删除表(drop table 表名) DROP TABLE students #在表格中插入数据(insert into 表名(属性) values(对应的值)) INSERT INTO students(id,NAME,sex) VALUES(1,"张三","男") #更新表格数据(update 表名 set 键=值,键=值 where 条件)中间要用“,”隔开,其他的无效 set只需写一个 UPDATE students SET id=2 , NAME="a" WHERE id=1 #删除表中数据(delete from 表名 where 条件) DELETE FROM students WHERE id=0 #查看表中数据(select 查询的东西 from 表名 where 条件) SELECT * FROM students WHERE id=1 SELECT * FROM students ORDER BY age DESC(order by升序,order by 列名 desc降序) 列 #添加列(alter table 表名 add 列名 字段类型) ALTER TABLE students ADD tel CHAR(20) ALTER TABLE students ADD address CHAR(50) AFTER sex #删除列(alter table 表名 drop 列名) ALTER TABLE students DROP address #修改列属性(alter table 表名 change 需要修改的列名 修改后的列名 新列名字段类型) ALTER TABLE stu CHANGE telphone tel CHAR(20) DEFAULT "-" ALTER TABLE students CHANGE tel ALTER TABLE students RENAME stu 简单函数 SELECT SUM(age) AS "总年龄" FROM students SELECT AVG(age) AS "平均年龄" FROM students SELECT MAX(age) AS "最大年龄" FROM students SELECT COUNT(id) AS "人数" FROM students(统计人数选择主键不然可为空的列会影响结果) 分组 表内容: 2005-05-09 胜 2005-05-09 胜 2005-05-09 负 2005-05-09 负 2005-05-10 胜 2005-05-10 负 2005-05-10 负 如果要生成下列结果, 该如何写sql语句? 胜 负 2005-05-09 2 2 2005-05-10 1 2 SELECT DATA AS " ",SUM(result='胜') AS "胜" ,SUM(result='负') AS "负" FROM test1 GROUP BY DATA Case when(case 属性=“” then “” end) 写出由table1.table2得到table3的sql语句 SELECT t1.部门dep,SUM(CASE WHEN 月份mon='一月份' THEN 业绩yj ELSE NULL END) AS '一月份', SUM(CASE WHEN 月份mon='二月份' THEN 业绩yj ELSE NULL END) AS '二月份', SUM(CASE WHEN 月份mon='三月份' THEN 业绩yj ELSE NULL END) AS '三月份' FROM table1 t1 LEFT JOIN table2 t2 ON t1.部门dep=t2.部门dep GROUP BY 部门dep 左连接与右连接(left join 表名 on 连接语句) Left join与right join区别就是:左连接是以主表为主,显示所有内容,若连接的表没有与它对应的值则不显示或显示为null,右连接同理。 内连接 用一条SQL语句查询出每门课都大于80分的学生姓名(表名为score) Select distinct(去重) name from score where name not in( Select name from score where fenshu<=80; ); Union all、union(下分别为t1.t1) SELECT * FROM t1 UNION ALL SELECT * FROM t2 (不去除重复)===》t3 SELECT * FROM t1 UNION SELECT * FROM t2 (去除重复)=====>t4 (上分别为t3.t4)
The above is the detailed content of Detailed introduction to Mysql tables, columns, database additions, deletions, modifications and queries. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

The main role of MySQL in web applications is to store and manage data. 1.MySQL efficiently processes user information, product catalogs, transaction records and other data. 2. Through SQL query, developers can extract information from the database to generate dynamic content. 3.MySQL works based on the client-server model to ensure acceptable query speed.

The process of starting MySQL in Docker consists of the following steps: Pull the MySQL image to create and start the container, set the root user password, and map the port verification connection Create the database and the user grants all permissions to the database

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

I encountered a tricky problem when developing a small application: the need to quickly integrate a lightweight database operation library. After trying multiple libraries, I found that they either have too much functionality or are not very compatible. Eventually, I found minii/db, a simplified version based on Yii2 that solved my problem perfectly.

The key to installing MySQL elegantly is to add the official MySQL repository. The specific steps are as follows: Download the MySQL official GPG key to prevent phishing attacks. Add MySQL repository file: rpm -Uvh https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm Update yum repository cache: yum update installation MySQL: yum install mysql-server startup MySQL service: systemctl start mysqld set up booting

Installing MySQL on CentOS involves the following steps: Adding the appropriate MySQL yum source. Execute the yum install mysql-server command to install the MySQL server. Use the mysql_secure_installation command to make security settings, such as setting the root user password. Customize the MySQL configuration file as needed. Tune MySQL parameters and optimize databases for performance.

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

MySQL and phpMyAdmin are powerful database management tools. 1) MySQL is used to create databases and tables, and to execute DML and SQL queries. 2) phpMyAdmin provides an intuitive interface for database management, table structure management, data operations and user permission management.
