avatar
文章
94
标签
40
分类
0
Home
时间轴
凌羽
Home
时间轴

凌羽

SQL语句学习
发表于2020-10-27
1. 删除某一个值为NULL 的数据 (adsbygoogle = window.adsbygoogle || []).push({}); 1delete from record where time is null 2. 查询某一个表里的数据与另一个表重复数据1SELECT * FROM tab1 WHERE `名称` IN (SELECT `名称` FROM tab2) 3. 查询某一个表里的数据与另一个表不重复数据注:不重复数据,需要排队NULL,如果第二个 查询中有NULL 数据,则比对出的数据为0行1SELECT * FROM tab1 WHERE `名称` NOT IN (SELECT `名称` FROM tab2 WHERE `名称` IS NOT NULL) 4. 分组统计求各1SELECT `名称`,SUM(`金额`+0) FROM tab1 GROUP BY `名称`
CentOS 7安装MySQL 8.0
发表于2020-08-17
Centos 安装 MySQL (adsbygoogle = window.adsbygoogle || []).push({}); Centos 安装 MySQL在CentOS中使用MySQL1、添加包12wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpmrpm -ivh mysql80-community-release-el7-3.noarch.rpm 2、更新 yum 命令1yum clean all && yum makecache 3、安装1yum install -y mysql-community-server 4、配置文件12#修改配置文件vim /etc/my.cnf 123456789101112131415[mysqld]port = 3306character-set-server=utf8mb4collation-server=utf8mb4_general_ci# 表名不区分大小写(启动前配置)low...
Docker Centos 安装 python3.7.3
发表于2020-08-14
Docker Centos 安装 python3.7.3 (adsbygoogle = window.adsbygoogle || []).push({}); Docker Centos 安装 python3.7.3一 、Mac Docker 安装手动下载安装如果需要手动下载,请点击以下链接下载Stable或Edge版本的 Docker for Mac。 如同 macOS 其它软件一样,安装也非常简单,双击下载的 .dmg 文件,然后将鲸鱼图标拖拽到 Application 文件夹即可。从应用中找到 Docker 图标并点击运行。可能会询问 macOS 的登陆密码,输入即可。点击顶部状态栏中的鲸鱼图标会弹出操作菜单。 启动终端后,通过命令可以检查安装后的 Docker 版本。 1docker --version 镜像加速鉴于国内网络问题,后续拉取 Docker 镜像十分缓慢,我们可以需要配置加速器来解决,我使用的是网易的镜像地址:http://hub-mirror.c.163.com。 在任务栏点击 Docker for mac 应用图标 ->...
Appium 自动化测试
发表于2020-04-14
Appium自动化测试 (adsbygoogle = window.adsbygoogle || []).push({}); 一 基础环境安装1.安装 Homebrew 1/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 2.安装 libimobiledevice brew install libimobiledevice 3.安装 ideviceinstaller(真机安装相关) 1brew install ideviceinstaller 4.安装 carthage 1brew install carthage 安装 carthage容易出现以下错误 1234Error: An unexpected error occurred during the `brew link` stepThe formula built, but is not symlinked into /usr/...
adb获取Android apk 性能信息
发表于2020-04-12
获取性能信息 (adsbygoogle = window.adsbygoogle || []).push({}); 如果adb 连接多个设备,需要添加 -s 如果只连接一个设备 -s 192.168.0.101 可以忽略 12-s 192.168.0.101 一、安装和卸载 adb -s 192.168.0.101 install <apk路径> adb -s 192.168.0.101 uninstall <应用包名> 二、log相关 adb logcat : 抓取所有log,无任何过滤 adb logcat -c : 清除手机之前的log信息 adb logcat -s : 抓取指定 tag 的log信息,这里的tag是任何自己定义的字符 adb logcat > “C:\Users\Administrator\Desktop\log.txt” : 保存log到本机指定路径,这里路径需要自定义 adb -s 192.168.0.102 logcat >/Users/kun/Desktop/db...
adb获取Android手机系统版本
发表于2020-04-08
adb获取Android手机系统版本 (adsbygoogle = window.adsbygoogle || []).push({}); 获取系统版本: adb shell getprop ro.build.version.release 7.1.2 获取系统api版本: adb shell getprop ro.build.version.sdk 25 获取手机相关制造商信息: adb shell getprop | grep “model|version.sdk|manufacture r|hardware|platform|revision|serialno|product.name|brand”
Android TV 自动化测试
发表于2020-04-01
Android 自动化测试 脚本运行 (adsbygoogle = window.adsbygoogle || []).push({}); Android 自动化测试 脚本运行ADB基本使用方法连接 adb connect 192.168.0.100 进入设备的shell adb -s 192.168.0.100 shell 退出adb exit 断开连接 adb disconnect 抓取log adb -s 192.168.0.100 logcat> /Users/kun/Desktop/adb_log/db/有线电视/1.txt 自动化脚本首先要了解手机(TV)的众多输入设备命令: 1adb shell cat /proc/bus/input/devices 输出 12345678910111213141516171819202122232425262728293031I: Bus=0010 Vendor=0001 Product=0001 Version=0100N: Name="aml_keypad"P: ...
如何使用DD命令安装OpenWrt
发表于2019-12-17
DD命令安装OpenWrt (adsbygoogle = window.adsbygoogle || []).push({}); 1dd if=/tmp/upload/op.img of=/dev/sda
linux 下载jdk
发表于2019-12-17
linux 下载 java jdk (adsbygoogle = window.adsbygoogle || []).push({}); 如下是使用wget 命令下载mac os 的jdk 安装包 1wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/13.0.1+9/cec27d702aa74d5a8630c65ae61e4305/jdk-13.0.1_osx-x64_bin.dmg http是你要下载jdk的地址1wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://......
MacOS 安装在移动固态硬盘中
发表于2019-12-17
MacOS Catalina OS 安装在外部移动固态硬盘中 (adsbygoogle = window.adsbygoogle || []).push({}); 原始电脑由于公司给的配置的电脑是Mac mini (Late 2014) 内存还凑合,但是硬盘很垃圾,已经2019年了,还是机械硬盘,对于用惯了固态的人来说,很难容忍,向上面申请一块固态,很难,同时也不想自己来拆mini,有一段时间,自己带着自己的mac book 来通勤,但时间长了,天天背来背去很烦,无意之间,看到mac os 可以安装在移动固态硬盘上,使用USB 或雷电接口,也可以跑满SATA接口硬盘的速度. 于是自己在网上看了几天,终于,在双十二,以599的价格入手一块三星T5 500G 的固态. 原始的机械硬盘,这样的速度, 三星T5 使用外部移到硬盘注意事项三星T5 默认磁盘格式为ExFAT ,需要将其格式化为 GUID 方案的APFS 打开磁盘工具显示全部 抹除GUID分区表格式可以格式化为APFS. 之后重启,开机按住 command + R 进入mac os 工具的界面 点击重新...
1…567…10
avatar
NUK
文章
94
标签
40
分类
0
Follow Me
公告
This is my Blog
最新文章
详解 Xcode 中的 User Script Sandboxing 配置2026-01-08
Linux 配置 SSH 免密登录极速指南2024-11-17
Ubuntu 20.04 安装 MySQL 8.0 及数据迁移避坑指南2024-11-04
MySQL 主从复制与双主双从架构部署指南2024-10-31
MongoDB 单机安装与副本集集群部署指南2024-10-21
标签
Ollama linux SQL Mac OS CDH ubuntu Mack so Git Nginx iOS Mongo NDK OpenVPN Promtail SVN Other mysql PVE Xcode Loki Android java Mac Python Linux Mysql MySQL AI 直播 JNI Spider FFmpeg Shell Ubuntu python Swift Docker android 音视频处理
归档
  • 一月 2026 1
  • 十一月 2024 2
  • 十月 2024 2
  • 八月 2024 2
  • 七月 2024 2
  • 六月 2024 2
  • 三月 2024 1
  • 十二月 2023 1
网站信息
文章数目 :
94
本站总字数 :
51.3k
本站访客数 :
本站总浏览量 :
最后更新时间 :
© 2018 - 2026 By NUK
苏ICP备15056369号-2