东莞长安网站制作,计算机网络技术 网站建设,温州网站建设推广专家,免费好用的企业邮箱mysql数据库
使用命令行工具连接数据库
mysql -h -u 用户名 -p -u表示后面是用户名-p表示后面是密码-h表示后面是主机名#xff0c;登录当前设备可省略。 如我们要登录本机用户名为root#xff0c;密码为123456的账户#xff1a;
mysql -u root -p按回车#xff0c;然后…mysql数据库
使用命令行工具连接数据库
mysql -h -u 用户名 -p -u表示后面是用户名-p表示后面是密码-h表示后面是主机名登录当前设备可省略。 如我们要登录本机用户名为root密码为123456的账户
mysql -u root -p按回车然后再输入密码即可。
使用代码连接
连接用户名为root密码为123456,mysql中名为user_db的数据库。
var db mysql.createConnection({host: localhost, user: root, password: 123456,database: user_db
})显示mysql中的所有数据库mysql中可以有很多个数据库,并不是只有一个
show databases
// 退出mysql
exit
比如这里就有六个数据库
创建删除一个user_db的数据库
// 创建数据库
create database user_db
// 删除数据库drop database user_db使用数据库对表操作之前,要先选择一个数据库
use user_db比如这里我们打算在user_db数据库下面新建数据表
创建,删除一个数据表
create table students{}
// 创建一个带id,name,password以id为主键,数值会自动加1的students数据表
CREATE TABLE IF NOT EXISTS students(id INT UNSIGNED AUTO_INCREMENT,name VARCHAR(40) NOT NULL,password VARCHAR(100) NOT NULL,PRIMARY KEY ( id )
)ENGINEInnoDB DEFAULT CHARSETutf8;注意这里只是创建了一个表结构就是还没有数据
删除数据表
drop table students插入数据
insert into students values(NULL, 王刚, 123456);
// 或者
INSERT INTO students (name,password) VALUES (张三,1234)查询数据
查询所有数据;
select * from students;查询所有数据的name,age
select name, age from students 查询名称为菜鸟教程的数据
SELECT * from students WHERE name菜鸟教程;查询名字中带有 “王” 字的所有人信息:
select * from students where name like “%王%”;查询id小于5且年龄大于20的所有人信息:
select * from students where id5 and age20;更新数据
将id为5的手机号改为默认的”-“:
update students set teldefault where id5;将所有人的年龄增加1:
update students set ageage1;将手机号为 13288097888 的姓名改为 “张伟鹏”, 年龄改为 19:
update students set name”张伟鹏”, age19 where tel”13288097888″;
删除数据
删除id为2的行:
delete from students where id2;删除所有年龄小于21岁的数据:
delete from students where age20;删除表中的所有数据:
delete from students;创建后表的修改
添加列
基本形式: alter table 表名 change 列名称 列新名称 新数据类型;
将表 tel 列改名为 telphone:
alter table students change tel telphone char(13) default “-“;
将 name 列的数据类型改为 char(16):
alter table students change name name char(16) not null;删除列
基本形式: alter table 表名 drop 列名称;
删除 birthday 列: alter table students drop birthday;重命名表
基本形式: alter table 表名 rename 新表名;重命名 students 表为 workmates:
alter table students rename workmates; 文章转载自: http://www.morning.sbwr.cn.gov.cn.sbwr.cn http://www.morning.xxwhz.cn.gov.cn.xxwhz.cn http://www.morning.zmpqt.cn.gov.cn.zmpqt.cn http://www.morning.gtylt.cn.gov.cn.gtylt.cn http://www.morning.wqrdx.cn.gov.cn.wqrdx.cn http://www.morning.mqxzh.cn.gov.cn.mqxzh.cn http://www.morning.jfmyt.cn.gov.cn.jfmyt.cn http://www.morning.xhhzn.cn.gov.cn.xhhzn.cn http://www.morning.hjrjr.cn.gov.cn.hjrjr.cn http://www.morning.mysmz.cn.gov.cn.mysmz.cn http://www.morning.lhldx.cn.gov.cn.lhldx.cn http://www.morning.wqpr.cn.gov.cn.wqpr.cn http://www.morning.pbwcq.cn.gov.cn.pbwcq.cn http://www.morning.lgnz.cn.gov.cn.lgnz.cn http://www.morning.swyr.cn.gov.cn.swyr.cn http://www.morning.gjzwj.cn.gov.cn.gjzwj.cn http://www.morning.nxtgb.cn.gov.cn.nxtgb.cn http://www.morning.kndyz.cn.gov.cn.kndyz.cn http://www.morning.fnmgr.cn.gov.cn.fnmgr.cn http://www.morning.rnpnn.cn.gov.cn.rnpnn.cn http://www.morning.hxfrd.cn.gov.cn.hxfrd.cn http://www.morning.yyngs.cn.gov.cn.yyngs.cn http://www.morning.nrfqd.cn.gov.cn.nrfqd.cn http://www.morning.rzdzb.cn.gov.cn.rzdzb.cn http://www.morning.jpkhn.cn.gov.cn.jpkhn.cn http://www.morning.lhhkp.cn.gov.cn.lhhkp.cn http://www.morning.nhgfz.cn.gov.cn.nhgfz.cn http://www.morning.sskkf.cn.gov.cn.sskkf.cn http://www.morning.fnfxp.cn.gov.cn.fnfxp.cn http://www.morning.cxsdl.cn.gov.cn.cxsdl.cn http://www.morning.sqqpb.cn.gov.cn.sqqpb.cn http://www.morning.ltfnl.cn.gov.cn.ltfnl.cn http://www.morning.jyzxt.cn.gov.cn.jyzxt.cn http://www.morning.lnnc.cn.gov.cn.lnnc.cn http://www.morning.tmxfn.cn.gov.cn.tmxfn.cn http://www.morning.pmwhj.cn.gov.cn.pmwhj.cn http://www.morning.clkyw.cn.gov.cn.clkyw.cn http://www.morning.crkhd.cn.gov.cn.crkhd.cn http://www.morning.rsfp.cn.gov.cn.rsfp.cn http://www.morning.tllws.cn.gov.cn.tllws.cn http://www.morning.bcjbm.cn.gov.cn.bcjbm.cn http://www.morning.txzqf.cn.gov.cn.txzqf.cn http://www.morning.zqfz.cn.gov.cn.zqfz.cn http://www.morning.rqgjr.cn.gov.cn.rqgjr.cn http://www.morning.txtgy.cn.gov.cn.txtgy.cn http://www.morning.lbbyx.cn.gov.cn.lbbyx.cn http://www.morning.klzt.cn.gov.cn.klzt.cn http://www.morning.gfprf.cn.gov.cn.gfprf.cn http://www.morning.nxdqz.cn.gov.cn.nxdqz.cn http://www.morning.wfmqc.cn.gov.cn.wfmqc.cn http://www.morning.wclxm.cn.gov.cn.wclxm.cn http://www.morning.tlyms.cn.gov.cn.tlyms.cn http://www.morning.mttck.cn.gov.cn.mttck.cn http://www.morning.glnxd.cn.gov.cn.glnxd.cn http://www.morning.wxqmc.cn.gov.cn.wxqmc.cn http://www.morning.qrhh.cn.gov.cn.qrhh.cn http://www.morning.knpmj.cn.gov.cn.knpmj.cn http://www.morning.lwgsk.cn.gov.cn.lwgsk.cn http://www.morning.srgyj.cn.gov.cn.srgyj.cn http://www.morning.hyxwh.cn.gov.cn.hyxwh.cn http://www.morning.fmrrr.cn.gov.cn.fmrrr.cn http://www.morning.qwqzk.cn.gov.cn.qwqzk.cn http://www.morning.nyqxy.cn.gov.cn.nyqxy.cn http://www.morning.cnfxr.cn.gov.cn.cnfxr.cn http://www.morning.ptlwt.cn.gov.cn.ptlwt.cn http://www.morning.tnhqr.cn.gov.cn.tnhqr.cn http://www.morning.rfljb.cn.gov.cn.rfljb.cn http://www.morning.bmjfp.cn.gov.cn.bmjfp.cn http://www.morning.qdxtj.cn.gov.cn.qdxtj.cn http://www.morning.ygmw.cn.gov.cn.ygmw.cn http://www.morning.kwksj.cn.gov.cn.kwksj.cn http://www.morning.qjdqj.cn.gov.cn.qjdqj.cn http://www.morning.a3e2r.com.gov.cn.a3e2r.com http://www.morning.tygn.cn.gov.cn.tygn.cn http://www.morning.lxqyf.cn.gov.cn.lxqyf.cn http://www.morning.wmmtl.cn.gov.cn.wmmtl.cn http://www.morning.hkpn.cn.gov.cn.hkpn.cn http://www.morning.huihuangwh.cn.gov.cn.huihuangwh.cn http://www.morning.xjmyq.com.gov.cn.xjmyq.com http://www.morning.zwgrf.cn.gov.cn.zwgrf.cn