对数据库、数据库表、及表中数据的基本操作

1、启动数据库:net start mysql

2、进入数据库:mysql -h localhost(进入本地数据库)-u root -p

3、创建数据库:create database student;

4、展示数据库:show databases ;

5、使用数据库:use student;

6、创建数据库表:create table student

                               (

                               id char(9) not null primary key ,(创建表中的主键)

                               name char(12) not null,

                               age int(6) not null

                               );

 7、展示数据库表:describe students ;

8、查询数据库表中的数据:select * from students;(全部查询)

                                            select name,age from students;(只查询name,age)

                                            select * from students where name=' ';(条件查询)

9、更新数据库表数据:update students set age=24 where name=' ';

                                      update students set age=age+1 ;

10、删除数据库表结构:delete from students where id='1';(条件删除表数据)

                                        delete from students;(全部删除表数据)

11、插入表数据:insert into students values();

12:修改数据库中的列:alter table 表名 change 列名 修改后列名

                                      alter table students change address addr char(35) not null;

13、删除数据库表中列:alter table 表名 drop 列;

                                       alter table students drop addr;

14、添加数据库表的列:alter table 表名 add column 新列 若不写则添加到最后,first代表添加到最前,age表示添加到age列后面

                                         alter table students add column addr char(35) not null;添加到最后一列

                                          alter table students add column addr char(35) not null first;添加到第一列

                                          alter table students add column addr char(35) not null age;添加到age列后面

14、给数据库表重命名:alter table 表名 rename 新名;

                                       alter table students rename students1;

15、删除数据库表:drop table 表名

                                 drop table students;

16、删除数据库:drop database 数据库名;

                              drop database student;


你可能感兴趣的:(对数据库、数据库表、及表中数据的基本操作)