linux里面的mysql数据库怎么查询_Linux下MYSQL数据库的基本操作

1.建立数据库:

mysql> create database test;  //建立一个名为"test"的数据库

2.建立数据库表:

mysql> create table test

-> (name char(16) not null,

-> passwd char(16)

->);            //建立一个名为"test"的表,里面有两个字段,一个字段名为“name”,类型为char,大小为16,非空;另一个字段名为“passwd”,也是char类型,大小为16,可以为空。

3.查找表中的元素:

mysql> select * from test;          //查找“test”表中的所有的元素。

4.向表中插入元素:

mysql> insert into test values('asd','123');  //向“test”表中插入name为“asd”,passwd为“123”的这么一个数据。

5.删除表中的元素:

mysql> delete from test where name='ásd';  //删除“test”表中,name为“asd”的数据。

6.修改表中的元素:

mysql> update test set passwd="111" where name="asd"  //把“test”表中,name为"asd"的数据的密码改为"111"。

你可能感兴趣的:(linux里面的mysql数据库怎么查询_Linux下MYSQL数据库的基本操作)