
学习笔记——MySQL
文章平均质量分 79
MySQL笔记整理
小羊爱学习.
我会每天分享学的心得与知识点,感兴趣的小伙伴可以关注一起讨论学习
展开
-
MySQL安装、基本命令增删改查 、配置变量、远程登陆及语句分类
1.MySQL常用Web连接官网主页 http://www.mysql.com 下载 https://www.mysql.com/downloads/ 文档 https://dev.mysql.com/doc/ 论坛 https://forums.mysql.com/ 示例数据库 https://dev.mysql.com/doc/index-other.html2.MySQL zip版windows系统安装①在WINDOWS上安装MySQL安装vc201...原创 2021-09-05 14:27:28 · 106 阅读 · 0 评论 -
数据库知识点涵盖总结题库及答案
测试数据:将sql复制到数据库生成库,表,数据。create database if not exists testdb;use testdbdrop table if exists student;create table student ( s_id int(11) not null, s_name varchar(20) default null, age int(11) default null, sex enum('男','女') default '男',...原创 2021-09-04 11:59:55 · 359 阅读 · 0 评论