10 2020 档案
摘要:设置字体可以在tools->preferences->Grid Editor/Text Editor/等进行编辑
阅读全文
摘要:Robot Framework发送https请求报错 原文链接 报错信息如下: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly ad
阅读全文
摘要:原文地址 在搭建好了python3.6版本或者之上的python环境后; 在dos命令输入 pip install robotframework 在线安装robotframework 在dos命令输入 pip install Pypubsub==3.3.0 在线安装 Pypubsub 在dos命令输
阅读全文
摘要:原文引用地址,鼓励看原文 1.表名称和字段 –1.学生表 Student(s_id,s_name,s_birth,s_sex) –学生编号,学生姓名, 出生年月,学生性别 –2.课程表 Course(c_id,c_name,t_id) – –课程编号, 课程名称, 教师编号 –3.教师表 Teach
阅读全文
摘要:MySQL字段拼接 部分引用:原文地址 1.concat()函数字段拼接 用法: concat(str1,str2,...) 栗子: select concat(s_id,s_name,s_sex) from student where s_id = '01' or s_id = '02' tip:
阅读全文