表单
摘要:<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>form 表单的学习</title></head><body><!-- 表单的标签 提交方式两种: get (默认 长度有限制)和 post(安全性高) --><f
阅读全文
html table
摘要:<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"/> <title>表格制作</title></head><body><table border="2" width="500" align="center" height="300
阅读全文
html超文本标记语言
摘要:<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"/> <title align=center>哼哼</title> <script type="text/javascript" src="./jquery.min.js"></sc
阅读全文
mysql数据库1
摘要:desc 表名; 显示表结构 select * from student; 查看表格内容 alter table student rename to students; 修改表格名字 from students; 查看表 insert into students values(0,'高海',20,1
阅读全文
mysql数据库
摘要:desc 表名; 显示表结构 select * from student; 查看表格内容 alter table student rename to students; 修改表格名字 from students; 查看表 insert into students values(0,'高海',20,1
阅读全文
模糊匹配/聚合函数
摘要:模糊匹配 like %表示任意多个任意字符 _表示一个任意字符 例7:查询姓黄的学生 select *from student where name like ’黄%‘ 例8:查询姓黄并且“名”是一个字的学生 select *from student where name like ’黄_‘ 范围查
阅读全文
mysql数据库
摘要:MySQL数据库 xampp 是著名的集成环境(集成安装包) MySQl 百万级数据 数据库 关系型数据库 开源 GpL公开源码 甲骨文收购了ORacle Oracle 甲骨文公司出的Oracle 著名 的数据库 大型数据 用Oracle 优点:跨平台 多种语言提供无缝接口 处理上千万条记录的大型数
阅读全文
mysql 数据库
摘要:mysql 默认数据库引擎INNODB 关系型数据库 默认端口 3306 目前属于 Oracle 公司旗下产品 启动mysql 服务的命令是start 进入Mysql 的命令 mysql -uroot -p 查看 进程中是否在mysql 服务使用命令是 show 退出 MySQL 服务用 exit
阅读全文
单词
摘要:decode解码 encode编码 service服务端 client 客户端 recv接收accept 接受,授权 send 发送 bind绑定 socket套接字 connent连接warning警告 variable 变量 error 错误 collections 收集 enclosing嵌套
阅读全文
正则表达式
摘要:正达表达式:匹配 过滤爬取编码:两个步骤:爬取( import urllib.request) 数据清洗(import re)import urllib.resquest 导入爬取模块import re 导入正则表达式response=urllib.request.urlopen("http://t
阅读全文