摘要:
总结:1、查询时用 not in 效率极其低下,因此结合left join改为in查询,效率很快 原语句: select * from my_test_table where id not in (select b.id as id from ( SELECT MAX(a.`ModifyAt`)Mo 阅读全文
摘要:
在MySQL中,写SQL语句的时候 ,可能会遇到You can't specify target table '表名' for update in FROM clause这样的错误,它的意思是说,不能先select出同一表中的某些值,再update这个表(在同一语句中),即不能依据某字段值做判断再来 阅读全文
摘要:
class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); Console.WriteLine(TestSwitch("0371")); Console.WriteLine(TestSwit 阅读全文
摘要:
异常信息:Result: 1273 - Unknown collation: 'utf8mb4_0900_ai_ci' 异常原因:导出SQL文本(或者同步数据库时)源数据库的版本和导入数据的目标数据库的版本不一致; 我的目标数据库是5.x的mysql,而源数据库mysql是8.x版本;本地的mysq 阅读全文
摘要:
$ ssh -T git@github.comssh: connect to host github.com port 22: Connection timed out 可以看到22端口无法连接 解决办法: 改为443端口。 在ssh key所在文件夹下添加一个文件,文件名是config 内容: H 阅读全文
摘要:
建议:生成ssh 公钥私钥的时候,不要输入密码。 解决方案: 1、修改密码:使用命令 ssh-keygen -p 然后修改密码的时候直接回车,也就是把密码置空。 2、重新生成ssh key, 用 ssh-keygen -t rsa -C "your_email@example.com" 其中,问你是 阅读全文
摘要:
var numberList = Enumerable.Range(1, 10).ToList(); 阅读全文
摘要:
http://visualstudioshortcuts.com/2017/ 阅读全文