艾特商业网

删除表的sql语句格式(删除表的sql语句)

更新时间:2023-08-15 19:22:18

导读 你们好,最近小艾特发现有诸多的小伙伴们对于删除表的sql语句格式,删除表的sql语句这个问题都颇为感兴趣的,今天小活为大家梳理了下,一起

你们好,最近小艾特发现有诸多的小伙伴们对于删除表的sql语句格式,删除表的sql语句这个问题都颇为感兴趣的,今天小活为大家梳理了下,一起往下看看吧。

1、 进入mysql,

2、 Create a database: create a database bookstore;

3、 Delete database: drop database bookstore;

4、 显示已建立的数据库名称:

5、 Show databases;

6、 选择创建的数据库:

7、 Use bookstore;

8、 创建数据表:(帐簿表)

9、 书台包括:

10、 Sql语句:

11、 Create table book(

12、 id int not null auto_increment,

13、 bookname varchar(50)不为空默认值''

14、 publisher varchar(50)not null default ' '

15、 author varchar(50)不为空默认值''

16、 price double not null default 0.00,

17、 detail text,

18、 publishdate date,

19、 primary key (id),

20、 index book_bookname(bookname),

21、 这里:id是主键,自增。bookname和price字段各创建一个公共索引,其他字段一般配置,默认设置为空。

22、 查看当前数据库下的多个表:

23、 Command: display table;

24、 查看图书表的详细结构:

25、 Command: desc book;

26、 删除此图书表:

27、 Command: drop the watch book;

以上就是删除表的sql语句这篇文章的一些介绍,希望对大家有所帮助。

免责声明:本文由用户上传,如有侵权请联系删除!