摘要:
鼠标悬浮放大效果 html <div class="imgBox"> <img src="http://www.jq22.com/img/cs/500x500-1.png" alt=""></div> css .imgBox { width:200px; height:200px; overflow 阅读全文
posted @ 2020-09-10 20:38
soda001
阅读(85)
评论(0)
推荐(0)
摘要:
插入数据 insert into 表名 values() 插入部分数据 insert into 表名(字段1,字段2) values(属性1,属性2) 修改数据 updae 表名 set字段属性 where 条件 待条件删除数据 delete from 表名 where 条件 -- 清空表DELET 阅读全文
posted @ 2020-09-10 20:23
soda001
阅读(114)
评论(0)
推荐(0)
摘要:
SQL 全拼 Structured Query Language 查询所有数据库 show databases; 创建数据库 create database 指定数据库字符集 create database character set utf8 查看数据库创建语句 show create datab 阅读全文
posted @ 2020-09-10 11:57
soda001
阅读(166)
评论(0)
推荐(0)