0、进入控制台,输入mysqld,再输入net start mysql(注意后面不用分号)。
1、没密码时:输入mysql -u root
有密码时:输入mysql -u root -p(回车)
Enter:123456(输入你的密码比如123456)(回车)
这时,你就可以进行创建数据库操作了。
一些命令:
创建数据库:CREATE DATABASE 数据库名;
显示所有的数据库:show databases;
删除数据库:drop database 数据库名;
进入数据库:use 数据库名; //创建表要指定哪个数据库
创建表
create table 表名(id int not null auto_increment primary key, name char(20) not null, age int not null);
删除表: drop table 表名;
插入数据: insert into 表名(name,age) values('阿忍姑娘',20);
删除数据:delete from 表名 where age<19;
更新数据:update 表名 set name=“诸葛清零” where id = 3;
查询数据: select * from 表名 where age>19;
问题解决:
1、出现“can't connection MySQL Server”时,输入“mysqld” ,回车再输入"net start mysql"
网友评论