数据库基本表的操作创建表,索引和查询
1、基本表的定义、删除和修改 (1)定义基本表 create table 表名(列名数据类型[列级完整性约束条件] [,列名数据类型[列级完整性约束条件]] …… [,表级完整性约束条件]) 如:创建一个“学生”表student create table student (Sno int primary key auto_in
1、基本表的定义、删除和修改(1)定义基本表
create table ([列级完整性约束条件]
[,[列级完整性约束条件]]
……
[,])
如:创建一个“学生”表student
create table student
(Sno int primary key auto_increment, /*列级完整性约束条件,Sno是主码,整型,自动增加*/
Sname varchar(20) unique, /*Sname 取唯一值*/
Ssex varchar(5)
)
(2)修改基本表
alter table
[add [完整性约束]]
[drop ]
[alter column ]
如:向student表中加入“入学时间”列
alter table student add Sentrane date;
(3)删除基本表
当某个基本表不再需要时,可以使用drop table 语句删除它
drop table [RESTRICT|CASCADE]
若选择restrict:则该表的的删除时有限制条件的,欲删除的基本表不能被其他表的约束所引用(如check,foreign key 等约束),不能有视图,不能有触发器,不能有存储过程或函数。如果存在这些以来该表的对象,此表不能删除。
若选择cascade:则该表的删除额米有限制条件,在删除基本表的同时,相关的以来对象,例如视图,都将被一起删除。
2、索引的建立与删除
简历索引是加快查询速度的有效手段。用户可以根据应用的环境的需要,在基本表上简历一个或多个索引,以提供多种存取路径,加快查找速度。
一般来说,建立和删除索引都有数据库管理员DBA或表的属主,即建立表的人,负责完成。
(1)建立索引
create [unique][cluster] index
on ([][,][]…)
索引可以建立在表的一列或多列上,每个后面可以用制定索引值得排列次序,可选ASC(升序)和DESC(降序),缺省值为ASC
unique表明此索引的每一个索引值只对应唯一的数据记录。
cluster表示要建立的索引是聚簇索引。所谓聚簇索引指索引项的顺序与表中记录的物理顺序一致的索引组织。
在一个基本表上最多只能建立一个聚簇索引。
(2)删除索引
drop index
删除索引时,系统会同时从数据字典中删去有关该索引的描述
3、数据查询
select [all|distinct] [,]… /*目标列表达式不仅可以是表中的属性列,也可以是表达式*/
from [,]…
[where ]
[group by [having ]] /*将查询结果按的值进行分组,该属性列值相等的元组为一个元组*/

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

1. First open DingTalk. 2. Open the group chat and click the three dots in the upper right corner. 3. Find my nickname in this group. 4. Click to enter to modify and save.

1. First of all, it is false to block and delete someone permanently and not add them permanently. If you want to add the other party after you have blocked them and deleted them, you only need the other party's consent. 2. If a user blocks someone, the other party will not be able to send messages to the user, view the user's circle of friends, or make calls with the user. 3. Blocking does not mean deleting the other party from the user's WeChat contact list. 4. If the user deletes the other party from the user's WeChat contact list after blocking them, there is no way to recover after deletion. 5. If the user wants to add the other party as a friend again, the other party needs to agree and add the user again.

1. Open the Douyin app, click [Message] at the bottom of the interface, and click the chat conversation entry that needs to be deleted. 2. Long press any chat record, click [Multiple Select], and check the chat records you want to delete. 3. Click the [Delete] button in the lower right corner and select [Confirm deletion] in the pop-up window to permanently delete these records.

Hibernate polymorphic mapping can map inherited classes to the database and provides the following mapping types: joined-subclass: Create a separate table for the subclass, including all columns of the parent class. table-per-class: Create a separate table for subclasses, containing only subclass-specific columns. union-subclass: similar to joined-subclass, but the parent class table unions all subclass columns.

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

HTML cannot read the database directly, but it can be achieved through JavaScript and AJAX. The steps include establishing a database connection, sending a query, processing the response, and updating the page. This article provides a practical example of using JavaScript, AJAX and PHP to read data from a MySQL database, showing how to dynamically display query results in an HTML page. This example uses XMLHttpRequest to establish a database connection, send a query and process the response, thereby filling data into page elements and realizing the function of HTML reading the database.

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

1. Open the WeChat app, click [Me] in the lower right corner, find and click the [Moments] option. 2. Click [My Moments] in the upper right corner and find the content in the Moments you want to delete on the My Moments interface. 3. Click to enter the details page of this circle of friends, and click the [small trash can] icon to the right of the content release time. 4. Select [OK] in the pop-up window, thus completing the operation of deleting the content in the circle of friends.
