解锁用户 SQL> alter user scott identified by tiger account unlock; 用户已更改。 切换用户 SQL> conn scott/tiger 已连接。 查看当前用户 SQL> show user USER 为 "SCOTT" 查看所有表 SQL> ...
分类:
其他好文 时间:
2021-04-20 14:12:18
阅读次数:
0
-- 查看创建数据库语句 SHOW CREATE DATABASE 数据库名 -- 查看创建表语句 SHOW CREATE TABLE 表名 -- 查看表结构 DESC 表名 MYISAM INNODB 事务支持 不支持 支持 数据行锁定 不支持 支持 外键 不支持 支持 全文索引 支持 不支持 表 ...
分类:
数据库 时间:
2021-04-20 14:02:45
阅读次数:
0
解压后得到名为4.gif的图片,但却无法打开。 使用10.edit打开发现文件头损坏,修补文件头部信息。 文件格式文件头文件尾 JPEG FF D8 FF FF D9 PNG 89 50 4E 47 AE 42 60 82 GIF 47 49 46 38 00 3B ZIP 50 4B 03 04 ...
分类:
其他好文 时间:
2021-04-19 16:04:01
阅读次数:
0
#! /bin/bash # @author # @breif auto ssh function show_usage(){ echo -e " This is Usage " echo -e " -h: which host to go,for example dev041" } functio ...
分类:
其他好文 时间:
2021-04-19 15:50:26
阅读次数:
0
table标签:用于直观展示用户信息 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="vi ...
分类:
Web程序 时间:
2021-04-19 15:46:54
阅读次数:
0
export_excel(){ this.axios.get('downExcelView/',{responseType:'blob'}).then(res=>{ var blob = new Blob([res.data], {type: 'application/vnd.openxmlform ...
分类:
其他好文 时间:
2021-04-19 15:08:07
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv ...
分类:
其他好文 时间:
2021-04-19 14:55:25
阅读次数:
0
1. 登录和登出数据库 登录数据库:mysql -uroot -p # 显示当前时间 select now(); 登出(退出)数据库: quit 或 exit 或 ctrl + d 2. 数据库操作的SQL语句 #1、查看所有数据库 show databases; #2、创建数据库 create d ...
分类:
数据库 时间:
2021-04-16 11:39:17
阅读次数:
0
1、先对系统生成的Fragment改造成更直观的,比如这种 public class DashboardFragment extends Fragment { private DashboardViewModel dashboardViewModel; public View onCreateVie ...
分类:
移动开发 时间:
2021-04-15 12:40:48
阅读次数:
0
一、快速开发 1.添加依赖 <!--mybatis-plus--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.1</vers ...
分类:
其他好文 时间:
2021-04-15 12:27:49
阅读次数:
0