1、登录数据库:用管理员模式打开cmd,把目录cd到数据库安装目录下的bin目录中,输入
mysql -u 名字 -p,敲回车输入你的密码。
2、创建数据库CREATE DATABASE 数据库名;
3、删除数据库DROP DATABASE 数据库名字;
4、选择数据库 USE 库名字;
5、入库use 库名字;
其实可视化工具更好用一些。更直观。
一些最为重要的SQL命令
1.select从数据库中提取数据
2.updata更新数据
3.delete从数据库删除数据
4.insert into插入数据
5.alter database修改数据库
6.alter table修改表
语句:
1.select name from table1; select * from table1;
2.select distinct country from table1;这个就是过滤一样的数据。
3.select * from table1 where country = 'cn';提取指定的数据
4.select * from table where country = 'cn' and alexa >50;或者是or ,意思就是and和or自身的意思
5.select * from table1 order by alexa;进行排序升序,select * from table1 order by alexa DESC;降序,这个还可以多列。 order by cn,alexa,.........
6.insert into table (id,name,cn) values('','','');
7.updata table set alexa = '500', cn='usa' where name ='';执行没有 WHERE 子句的 UPDATE 要慎重,再慎重。在 MySQL 中可以通过设置 sql_safe_updates 这个自带的参数来解决,当该参数开启的情况下,你必须在update 语句后携带 where 条件,否则就会报错。set sql_safe_updates=1; 表示开启该参数












网友评论