
mysql
前方有一大片阳光
向光而行,微风作伴
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
linux mysql安装 远程连接 字符集设置 读写速度问题 基础问题
1.安装配置mysql 下载地址 https://dev.mysql.com/downloads/mysql/ 社区版(GA)为免费版 推荐参考https://www.cnblogs.com/xxoome/p/5864912.html service mysql start 启动数据库 service mysql stop 停止数据库 service mysql原创 2018-01-15 15:47:56 · 253 阅读 · 0 评论 -
c++ 生成时间戳与时间戳转换成秒 数据库datetime格式可用
数据库datetime 格式可以通过函数进行转化,测试可以。另外下面还有测试网站 https://www.cnblogs.com/jiu0821/p/6089005.html转载 2018-12-18 18:34:17 · 1921 阅读 · 0 评论 -
数据库 增删改查 简单操作
//查询 select * from table1; select * from table1 where id = 2 and name year = 18 and devid = 5; //显示全部信息 select id, year, devid from table1; //显示year devid id 3项 select * fr...原创 2018-12-18 18:58:26 · 355 阅读 · 0 评论