- 博客(4)
- 收藏
- 关注

原创 sql增删查改
**SQL常用增删改查语句**## **1增**1.1【插入单行】insert [into] <表名> (列名) values (列值)例:insert into Strdents (姓名,性别,出生日期) values ('开心朋朋','男','1980/6/15')1.2【将现有表数据添加到一个已有表】insert into <已有的新表> (列...
2020-04-29 08:26:45
161
原创 js文字转语音
js文字转语言<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <input
2021-04-13 17:02:30
408
原创 git生成ssh密钥
git生成ssh密钥git config --global user.name "xxxxx"配置用户名git config --global user.email "xxxxxxx@qq.com"配置邮箱ssh-keygen -t rsa -C "xxxxxx@qq.com"生成公钥和私钥按3次Enter,查看私钥 :C:\Users\ 用户 .ssh
2021-03-06 10:41:11
135
原创 删除表中相同字段
查询表中重复数据select * from employee where employeeId in (select employeeId from employee group by employeeId having count(employeeId) > 1)删除表中多余的重复记录,重复记录是根据单个字段(employeeId)来判断,只留有rowid最小的记录delete from employee where employeeId in (select employeeId from
2020-06-08 20:02:03
224
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人