首页
金蝶系列
用友系列
鼎捷系列
OA协同办公
注册/登录
登录
注册
Search
1
Python 3.8 - ModuleNotFoundError: No module named 'flask._compat'
259 阅读
2
CentOS 7 - 安装iredMail 邮件服务器
252 阅读
3
Zabbix 4.0 源码安装
221 阅读
4
Kingdee-采购管理-T_PUR_CATALOGENTRY_R-采购目录_关联信息表
189 阅读
5
Python循环语句- for
179 阅读
默认分类
Windows
金蝶
OA
ERP
帆软
用友
Linux
数据库
/
Search
标签搜索
金蝶
管理
美萍
OA
Linux
qq
泛微
获取
破解
监控
用友
IPguard
KIS
Zabbix
python
帆软
活字格
MySQL
FineReport
k3cloud
SOSO
累计撰写
299
篇文章
累计收到
7
条评论
首页
栏目
默认分类
Windows
金蝶
OA
ERP
帆软
用友
Linux
数据库
页面
金蝶系列
用友系列
鼎捷系列
OA协同办公
推荐
登录
注册
搜索到
299
篇与
的结果
2021-11-08
MySQL 8.0.15 - AND 、OR、NOT 运算符
MySQL AND 、OR、NOT 运算符例1 AND运算符 查询出生日期在1990年以后,并且 积分大于1000SELECT * FROM customers WHERE birth_date > '1990-01-01' AND points > 1000注:AND 运算符 两个条件都要符合才会返回结果集。输出 例2 OR运算符 查询出生日期在1990年以后,并且 积分大于1000SELECT * FROM customers WHERE birth_date > '1990-01-01' OR points > 1000注:OR 运算符 只要有一个条件符合就会返回结果集。输出 例3 NOT运算符 查询出生日期在1990年以后,并且 积分大于1000SELECT * FROM customers WHERE NOT(birth_date > '1990-01-01' OR points > 1000);注:NOT 运算符 对结果集进行非运算。输出 练习 获取订单id 6的,并且总价>30SELECT * FROM order_items WHERE order_id = 6 AND unit_price * quantity > 30;输出
2021年11月08日
69 阅读
0 评论
0 点赞
2021-11-04
MySQL 8.0.15 - WHERE 子句
WHERE子句例1 使用WHERE子句,查询points大于3000的顾客SELECT * FROM customers WHERE points > 3000输出例2 查询所在州为 'VA'的顾客SELECT * FROM customers WHERE state = 'VA';输出例3 获取2019年下的订单SELECT * FROM orders WHERE order_date >= '2019-01-01';
2021年11月04日
66 阅读
0 评论
0 点赞
2021-11-04
MySQL-8.0.15 - SELECT 语句
SELECT 查询语句 查询1USE sql_store; SELECT * FROM customers -- WHERE customer_id = 1 ORDER BY first_name;查询 2SELECT last_name, first_name, points, points * 10 + 100 FROM customers;练习-- Return all the products -- name -- unit price -- new price (unit price * 1.1) SELECT name, unit_price, unit_price * 1.1 AS new_price FROM products;
2021年11月04日
80 阅读
0 评论
0 点赞
2021-11-04
MySQL 8.0.15 - Windows安装
1. 下载MySQL 8.0.15MySQL:https://downloads.mysql.com/archives/get/p/25/file/mysql-installer-community-8.0.15.0.msi样本库 :https://github.com/datacharmer/test_dbwget https://github.com/datacharmer/test_db/releases/download/v1.0.7/test_db-1.0.7.tar.gz2. 安装MySQL 8.0.15
2021年11月04日
103 阅读
0 评论
0 点赞
2021-10-20
checkra1n 生成ISO
checkra1n安装yum install epel-release livecd-tools lrzsz expect生成密码之python>>> import crypt >>> print(crypt.crypt("password", crypt.mksalt(crypt.METHOD_SHA512))) $6$jGuvTwb4.HaFUBAr$f0r0XYPdY0Skxtz4KKsy3OyFqCElHbqXgceTAkDKN/9xu49g01wf3cFyJ.YrxB4Ldq61OXP9TWSMY0bEtMEXR1 >>>生成密码之mkpasswdapt-get install whoismkpasswd 帮助localhost@Debian:~$ mkpasswd -h 用法: mkpasswd [OPTIONS]... [PASSWORD [SALT]] 用 crypt(3) 加密 PASSWORD。 -m, --method=TYPE 选择使用 TYPE 的方法 -S, --salt=SALT 使用指定随机字符 -R, --rounds=NUMBER 使用指定的循环次数 NUMBER -P, --password-fd=NUM 从文件描述符 NUM 中读取密码来 替代从 /dev/tty 中获取密码 -s, --stdin 同 --password-fd=0 -h, --help 显示帮助信息并退出 -V, --version 输出版本信息并退出生成密码localhost@Debian:~$ mkpasswd -m sha-512 -S salt1231 -R 5000 password $6$rounds=5000$salt1231$y2KR1z/Dfs/pbM2mVmFFOLr3Ql4QXoS/DYuN2yMwLmXi9hFXV85NWLeFcqfiz4Dsz4uEkHNgwchb5RloDDxfE/ localhost@Debian:~$ checkra1n.cfg配置文件# System authorization information auth --enableshadow --passalgo=sha512 # Run the Setup Agent on first boot firstboot --disable # System firewall firewall --disable # System timezone timezone Asia/Shanghai --isUtc --nontp # System language lang en_US.UTF-8 # Keyboard layouts keyboard --vckeymap=us --xlayouts='us' # Network information network --bootproto=dhcp --device=ens33 --noipv6 --nameserver=114.114.114.114 --hostname=checkra1n # Root password rootpw --iscrypted $6$jGuvTwb4.HaFUBAr$f0r0XYPdY0Skxtz4KKsy3OyFqCElHbqXgceTAkDKN/9xu49g01wf3cFyJ.YrxB4Ldq61OXP9TWSMY0bEtMEXR1 # Partition clearing information clearpart --all --initlabel # Disk partitioning information part / --fstype="ext4" --size=8192 # System bootloader configuration bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda # Repo repo --name="base" --baseurl=http://mirrors.ustc.edu.cn/centos/7/os/x86_64/ repo --name="updates" --baseurl=http://mirrors.ustc.edu.cn/centos/7/updates/x86_64/ repo --name="extra" --baseurl=http://mirrors.ustc.edu.cn/centos/7/extras/x86_64/ repo --name="epel" --baseurl=http://mirrors.ustc.edu.cn/epel/7/x86_64/ %packages bash kernel syslinux passwd policycoreutils dhclient usbmuxd authconfig rootfiles firewalld # uefi efibootmgr grub2-efi-x64 grub2-efi-x64-cdboot grub2-efi-x64-modules grub2-pc grub2-pc-modules grub2-tools* shim-x64 %end %post --nochroot cp /root/checkra1n $INSTALL_ROOT/bin/ %end %post chmod +x /bin/checkra1n echo "/bin/checkra1n -V" >> /etc/bashrc %end %post --nochroot cp /root/checkra1n $INSTALL_ROOT/bin/ %end %post chmod +x /bin/checkra1n echo "/bin/checkra1n -V" >> /etc/bashrc %end 生成isolivecd-creator -c checkra1n.cfg -f checkra1n-0.12.4 -d
2021年10月20日
124 阅读
0 评论
0 点赞
1
...
56
57
58
...
60