摘要: 参考 https://baijiahao.baidu.com/s?id=1608326786755050044&wfr=spider&for=pc 1、NOW 获取当前日期和时间的函数。 语法: NOW() 例如:select NOW(); 2、CURDATE 获取当前的日期 语法:CURDATE( 阅读全文
posted @ 2020-04-04 20:53 少年奶油喵 阅读(1793) 评论(0) 推荐(0) 编辑
摘要: -- 查看有哪些数据库 show databases; -- 选择进入数据库 use test; -- 查看当前数据库中有哪些表 show tables; -- 查看表结构 desc employee; select count(*) from emp; -- 检查导入数据总行数 -- 批量导入数据 阅读全文
posted @ 2020-04-04 20:41 少年奶油喵 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1.如何查看自己的电脑版本是32位还是64位:控制面板-系统 2.安装:https://www.cnblogs.com/sui776265233/p/11453004.html 3.Jupyter Notebook 添加目录插件:https://blog.csdn.net/GD_little_rad 阅读全文
posted @ 2020-04-04 17:06 少年奶油喵 阅读(207) 评论(0) 推荐(0) 编辑
摘要: https://cdn.mysql.com//Downloads/MySQLInstaller/mysql-installer-community-8.0.19.0.msi(社区版,免费的开源版本,8.0.19) 双击安装-选择安装类型-cutom(自定义) 选择产品(自己选择安装包中的产品) - 阅读全文
posted @ 2020-04-04 16:38 少年奶油喵 阅读(549) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/xdkprosperous/article/details/81112145 阅读全文
posted @ 2020-04-04 14:42 少年奶油喵 阅读(2395) 评论(0) 推荐(0) 编辑
摘要: #自连接SELECT b.* from shopping as a,shopping as b where a.name='惠惠' and a.price<b.price order by b.id #子查询 SELECT * FROM shopping WHERE price>(select pr 阅读全文
posted @ 2020-04-04 13:55 少年奶油喵 阅读(280) 评论(0) 推荐(0) 编辑