上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 49 下一页
摘要: 1.创建用户: 账户信息: 2.授权: 命令格式:grant privileges Code on dbName.tableName to username@host identified by "password"; grant all privileges on mydb.* to mysqlu 阅读全文
posted @ 2019-03-26 17:10 醉城、 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 一.导出一张表数据 把test_time表中的数据导出成txt 文件 进行导出操作: mysql> select * from test_time into outfile '/var/lib/mysql-files/test_time.txt'; Query OK, 1 row affected 阅读全文
posted @ 2019-03-26 16:04 醉城、 阅读(12004) 评论(0) 推荐(0) 编辑
摘要: 1.创建表: create table test_time(id int primary key not null,status varchar(24),create_time datetime default current_timestamp,update_time datetime defau 阅读全文
posted @ 2019-03-26 15:07 醉城、 阅读(2412) 评论(0) 推荐(0) 编辑
摘要: 一:分页需求: 客户端通过传递start(页码),limit(每页显示的条数)两个参数去分页查询数据库表中的数据,那我们知道MySql数据库提供了分页的函数limit m,n,但是该函数的用法和我们的需求不一样,所以就需要我们根据实际情况去改写适合我们自己的分页语句,具体的分析如下: 比如: 查询第 阅读全文
posted @ 2019-03-26 14:47 醉城、 阅读(19318) 评论(0) 推荐(1) 编辑
摘要: sed命令行格式为: sed [-nefri] ‘command’ 输入文本/文件 常用选项: -n∶取消默认的输出,使用安静(silent)模式。在一般 sed 的用法中,所有来自 STDIN的资料一般都会被列出到屏幕上。但如果加上 -n 参数后,则只有经过sed 特殊处理的那一行(或者动作)才会 阅读全文
posted @ 2019-03-20 17:22 醉城、 阅读(2298) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 49 下一页