mysql索引与视图_MySQL
bitsCN.com
原始表student字段:
mysql> select column_name,data_type -> from information_schema.columns -> where table_name = 'student';+-------------+-----------+| column_name | data_type |+-------------+-----------+| stu_id | int || stu_name | varchar || stu_tel | int || stu_score | int |+-------------+-----------+4 rows in set (0.01 sec)
mysql> select * from student;+--------+----------+---------+-----------+| stu_id | stu_name | stu_tel | stu_score |+--------+----------+---------+-----------+| 1 | a | 151 | 60 || 2 | b | 152 | 61 || 3 | c | 153 | 62 || 4 | d | 154 | 63 |+--------+----------+---------+-----------+4 rows in set (0.00 sec)
索引创建格式:
create [ <index type> ] index <index name> [ using {btree | hash} ] on table specification ( <column in index> [,<column in index> ] )<index type> := unique | fulltext | spatial<column in index>:=<column name> [asc | desc]
创建一个最简单的索引:
mysql> create index stu_index -> on student(stu_id);Query OK, 0 rows affected (0.36 sec)Records: 0 Duplicates: 0 Warnings: 0
如果没有指定using声明的话,mysql自动创建一个B树。所以上面的索引其实是这样子的:
mysql> create index stu_index using btree -> on student(stu_id asc);Query OK, 0 rows affected (0.19 sec)Records: 0 Duplicates: 0 Warnings: 0
也可以为多个列创建唯一的索引:
mysql> create unique index stu_index using hash -> on student(stu_id,stu_name);Query OK, 0 rows affected (0.19 sec)Records: 0 Duplicates: 0 Warnings: 0
mysql> alter table student -> add unique index stu_index2 -> using hash (stu_tel);Query OK, 0 rows affected (0.36 sec)Records: 0 Duplicates: 0 Warnings: 0
mysql> drop index stu_index on student;Query OK, 0 rows affected (0.22 sec)Records: 0 Duplicates: 0 Warnings: 0
mysql> create table student( -> stu_id int primary key, -> stu_name varchar(5) not null, -> stu_tel int(5) unique, -> stu_score int(2), -> index stu_index(stu_id) -> );
只需在表的最后添加创建索引的语句即可。
视图是数据库中的虚拟表,它存储的不是自己的内容,而是经过select从其他表整合而来的。当其他表的内容改变是,视图内的内容跟着改变。在一定条件下,对视图的更新也将改变源表。
创建视图:
create [ or replace ] view <view name> [<column list>] as <table expression> [with [ cascaded |local ] check option ]mysql> create view view1 as -> (select * from student);Query OK, 0 rows affected (0.16 sec)
mysql> select * from view1;+--------+----------+---------+-----------+| stu_id | stu_name | stu_tel | stu_score |+--------+----------+---------+-----------+| 1 | a | 151 | 60 || 2 | b | 152 | 61 || 3 | c | 153 | 62 || 4 | d | 154 | 63 |+--------+----------+---------+-----------+4 rows in set (0.00 sec)
创建视图时还可以更改原始列名。
mysql> create or replace view view1(id,name,tel,score) as -> (select * from student);Query OK, 0 rows affected (0.03 sec)
mysql> select * from view1;+----+------+------+-------+| id | name | tel | score |+----+------+------+-------+| 1 | a | 151 | 60 || 2 | b | 152 | 61 || 3 | c | 153 | 62 || 4 | d | 154 | 63 |+----+------+------+-------+4 rows in set (0.00 sec)
删除视图:
drop view view1;

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.
