search
HomeDatabaseMysql Tutorial用MySQL命令对表和相关表结构进行修改

用MySQL命令对表和相关表结构进行修改

Jun 07, 2016 pm 04:11 PM
mysqlReviseOrderactualoperateRelatedstructureconduct

在实际的操作中有时我们会遇到对数据库表与数据库进行删除与修改的情况,以下的文章就是针对这一情况给出的相关的解答方案,即使用MySQL命令对一些表正确进行修改和表结构的修改 。 使用MySQL命令对表的修改与表结构修改: 1、增加一列: 如在前面例子中的my

在实际的操作中有时我们会遇到对数据库表与数据库进行删除与修改的情况,以下的文章就是针对这一情况给出的相关的解答方案,即使用MySQL命令对一些表正确进行修改和表结构的修改 。

使用MySQL命令对表的修改与表结构修改:

1、增加一列:

如在前面例子中的mytable表中增加一列表示是否单身single:

<ol class="dp-xml"><li class="alt">MySQL<span><span class="tag">></span><span> alter table mytable add column single char(1); </span></span>
</li></ol>

2、修改记录
将abccs的single记录修改为“y”:

<ol class="dp-xml"><li class="alt">MySQL<span><span class="tag">></span><span> update mytable set </span><span class="attribute">single</span><span>=</span><span class="attribute-value">'y'</span><span> where </span><span class="attribute">name</span><span>=</span><span class="attribute-value">'abccs'</span><span>; </span></span>
</li></ol>

现在来看看发生了什么:

<ol class="dp-xml">
<li class="alt">MySQL<span><span class="tag">></span><span> select * from mytable;   </span></span>
</li>
<li><span>+----------+------+------------+-----------+--------+   </span></li>
<li class="alt"><span>| name | sex | birth | birthaddr | single |   </span></li>
<li><span>+----------+------+------------+-----------+--------+   </span></li>
<li class="alt"><span>| abccs|f | 1977-07-07 | china | y |   </span></li>
<li><span>| mary |f | 1978-12-12 | usa | NULL |   </span></li>
<li class="alt"><span>| tom |m | 1970-09-02 | usa | NULL |   </span></li>
<li><span>+----------+------+------------+-----------+--------+ </span></li>
</ol>

3、增加记录

前面已经讲过如何增加一条记录,为便于查看,重复与此:

<ol class="dp-xml">
<li class="alt">MySQL<span><span class="tag">></span><span> insert into mytable   </span></span>
</li>
<li>
<span>-</span><span class="tag">></span><span> values ('abc','f','1966-08-17','china','n');   </span>
</li>
<li class="alt"><span>Query OK, 1 row affected (0.05 sec)  </span></li>
</ol>

查看一下:

<ol class="dp-xml">
<li class="alt">MySQL<span><span class="tag">></span><span> select * from mytable;   </span></span>
</li>
<li><span>+----------+------+------------+-----------+--------+   </span></li>
<li class="alt"><span>| name | sex | birth | birthaddr | single |   </span></li>
<li><span>+----------+------+------------+-----------+--------+   </span></li>
<li class="alt"><span>| abccs|f | 1977-07-07 | china | y |   </span></li>
<li><span>| mary |f | 1978-12-12 | usa | NULL |   </span></li>
<li class="alt"><span>| tom |m | 1970-09-02 | usa | NULL |   </span></li>
<li><span>| abc |f | 1966-08-17 | china | n |   </span></li>
<li class="alt"><span>+----------+------+------------+-----------+--------+ </span></li>
</ol>

3、删除记录

用如下MySQL命令删除表中的一条记录:

<ol class="dp-xml"><li class="alt">MySQL<span><span class="tag">></span><span> delete from mytable where </span><span class="attribute">name</span><span>=</span><span class="attribute-value">'abc'</span><span>;  </span></span>
</li></ol>

DELETE从表中删除满足由where给出的条件的一条记录。

再显示一下结果:

<ol class="dp-xml">
<li class="alt">MySQL<span><span class="tag">></span><span> select * from mytable;   </span></span>
</li>
<li><span>+----------+------+------------+-----------+--------+   </span></li>
<li class="alt"><span>| name | sex | birth | birthaddr | single |   </span></li>
<li><span>+----------+------+------------+-----------+--------+   </span></li>
<li class="alt"><span>| abccs|f | 1977-07-07 | china | y |   </span></li>
<li><span>| mary |f | 1978-12-12 | usa | NULL |   </span></li>
<li class="alt"><span>| tom |m | 1970-09-02 | usa | NULL |   </span></li>
<li><span>+----------+------+------------+-----------+--------+ </span></li>
</ol>

4、删除表:

MySQL> drop table ****(表1的名字),***表2的名字;

可以删除一个或多个表,小心使用。

5、数据库的删除:

MySQL> drop database 数据库名;

小心使用。

6、数据库的备份:

退回到DOS:

<ol class="dp-xml">
<li class="alt">MySQL<span><span class="tag">></span><span> quit   </span></span>
</li>
<li>
<span>d:</span>MySQL<span>bin  </span>
</li>
</ol>

使用如下MySQL命令对数据库abccs进行备份:

<ol class="dp-xml"><li class="alt">MySQL<span>dump --opt abccs</span><span>>abccs.dbb  </span>
</li></ol>

abccs.dbb就是你的数据库abccs的备份文件。

7、用批处理方式使用MySQL:

首先建立一个批处理文件mytest.sql,内容如下:

<ol class="dp-xml">
<li class="alt"><span><span>use abccs;   </span></span></li>
<li><span>select * from mytable;   </span></li>
<li class="alt">
<span>select name,sex from mytable where </span><span class="attribute">name</span><span>=</span><span class="attribute-value">'abccs'</span><span>; </span>
</li>
</ol>

在DOS下运行如下命令:

<ol class="dp-xml"><li class="alt">d:MySQL<span>bin </span>MySQL<span> </span><span class="tag"><span> </span><span>mytest.sql  </span></span>
</li></ol>

在屏幕上会显示执行结果。

如果想看结果,而输出结果很多,则可以用这样的MySQL命令:

<ol class="dp-xml"><li class="alt">MySQL<span> </span><span class="tag"><span> </span><span>mytest.sql | more </span></span>
</li></ol>

我们还可以将结果输出到一个文件中:

<ol class="dp-xml"><li class="alt">MySQL<span> </span><span class="tag"><span> </span><span class="tag-name">mytest.sql</span><span> </span><span>> mytest.out </span></span>
</li></ol>

加索引549830479

<ol class="dp-xml">
<li class="alt">MySQL<span><span class="tag">></span><span> alter table tablename change depno depno int(5) not null;  </span></span>
</li>
<li>MySQL<span class="tag">></span><span> alter table tablename add index 索引名 (字段名1[,字段名2 …]);  </span>
</li>
<li class="alt">MySQL<span class="tag">></span><span> alter table tablename add index emp_name (name); </span>
</li>
</ol>

加主关键字的索引549830479

<ol class="dp-xml"><li class="alt">MySQL<span><span class="tag">></span><span> alter table tablename add primary key(id); </span></span>
</li></ol>

加唯一限制条件的索引549830479

<ol class="dp-xml"><li class="alt">MySQL<span><span class="tag">></span><span> alter table tablename add unique emp_name2(cardnumber); </span></span>
</li></ol>

删除某个索引549830479

<ol class="dp-xml"><li class="alt">MySQL<span><span class="tag">></span><span>alter table tablename drop index emp_name; </span></span>
</li></ol>

修改表:549830479

增加字段:549830479

<ol class="dp-xml"><li class="alt">MySQL<span><span class="tag">></span><span> ALTER TABLE table_name ADD field_name field_type; </span></span>
</li></ol>

修改原字段名称及类型:549830479

<ol class="dp-xml"><li class="alt">MySQL<span><span class="tag">></span><span> ALTER TABLE table_name CHANGE old_field_name new_field_name field_type; </span></span>
</li></ol>

删除字段:549830479

<ol class="dp-xml"><li class="alt">MySQL<span><span class="tag">></span><span> ALTER TABLE table_name DROP field_name; </span></span>
</li></ol>

PS;修改字段属性

<ol class="dp-xml"><li class="alt"><span><span>ALTER TABLE tableName MODIFY cloumnName DATETIME; </span></span></li></ol>

以上的相关内容就是对使用MySQL命令对表的修改与表结构修改.的介绍,望你能有所收获。


Statement
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
What Are the Limitations of Using Views in MySQL?What Are the Limitations of Using Views in MySQL?May 14, 2025 am 12:10 AM

MySQLviewshavelimitations:1)Theydon'tsupportallSQLoperations,restrictingdatamanipulationthroughviewswithjoinsorsubqueries.2)Theycanimpactperformance,especiallywithcomplexqueriesorlargedatasets.3)Viewsdon'tstoredata,potentiallyleadingtooutdatedinforma

Securing Your MySQL Database: Adding Users and Granting PrivilegesSecuring Your MySQL Database: Adding Users and Granting PrivilegesMay 14, 2025 am 12:09 AM

ProperusermanagementinMySQLiscrucialforenhancingsecurityandensuringefficientdatabaseoperation.1)UseCREATEUSERtoaddusers,specifyingconnectionsourcewith@'localhost'or@'%'.2)GrantspecificprivilegeswithGRANT,usingleastprivilegeprincipletominimizerisks.3)

What Factors Influence the Number of Triggers I Can Use in MySQL?What Factors Influence the Number of Triggers I Can Use in MySQL?May 14, 2025 am 12:08 AM

MySQLdoesn'timposeahardlimitontriggers,butpracticalfactorsdeterminetheireffectiveuse:1)Serverconfigurationimpactstriggermanagement;2)Complextriggersincreasesystemload;3)Largertablesslowtriggerperformance;4)Highconcurrencycancausetriggercontention;5)M

MySQL: Is it safe to store BLOB?MySQL: Is it safe to store BLOB?May 14, 2025 am 12:07 AM

Yes,it'ssafetostoreBLOBdatainMySQL,butconsiderthesefactors:1)StorageSpace:BLOBscanconsumesignificantspace,potentiallyincreasingcostsandslowingperformance.2)Performance:LargerrowsizesduetoBLOBsmayslowdownqueries.3)BackupandRecovery:Theseprocessescanbe

MySQL: Adding a user through a PHP web interfaceMySQL: Adding a user through a PHP web interfaceMay 14, 2025 am 12:04 AM

Adding MySQL users through the PHP web interface can use MySQLi extensions. The steps are as follows: 1. Connect to the MySQL database and use the MySQLi extension. 2. Create a user, use the CREATEUSER statement, and use the PASSWORD() function to encrypt the password. 3. Prevent SQL injection and use the mysqli_real_escape_string() function to process user input. 4. Assign permissions to new users and use the GRANT statement.

MySQL: BLOB and other no-sql storage, what are the differences?MySQL: BLOB and other no-sql storage, what are the differences?May 13, 2025 am 12:14 AM

MySQL'sBLOBissuitableforstoringbinarydatawithinarelationaldatabase,whileNoSQLoptionslikeMongoDB,Redis,andCassandraofferflexible,scalablesolutionsforunstructureddata.BLOBissimplerbutcanslowdownperformancewithlargedata;NoSQLprovidesbetterscalabilityand

MySQL Add User: Syntax, Options, and Security Best PracticesMySQL Add User: Syntax, Options, and Security Best PracticesMay 13, 2025 am 12:12 AM

ToaddauserinMySQL,use:CREATEUSER'username'@'host'IDENTIFIEDBY'password';Here'showtodoitsecurely:1)Choosethehostcarefullytocontrolaccess.2)SetresourcelimitswithoptionslikeMAX_QUERIES_PER_HOUR.3)Usestrong,uniquepasswords.4)EnforceSSL/TLSconnectionswith

MySQL: How to avoid String Data Types common mistakes?MySQL: How to avoid String Data Types common mistakes?May 13, 2025 am 12:09 AM

ToavoidcommonmistakeswithstringdatatypesinMySQL,understandstringtypenuances,choosetherighttype,andmanageencodingandcollationsettingseffectively.1)UseCHARforfixed-lengthstrings,VARCHARforvariable-length,andTEXT/BLOBforlargerdata.2)Setcorrectcharacters

See all articles

Hot AI Tools

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.

Undress AI Tool

Undress AI Tool

Undress images for free

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 Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor