摘要:
出现bad interpreter:No such file or directory的原因是Linux与Windows之间文件格式的问题。如果shell文件是在Windows下编写的,就会出现这种错误。因为Windows的换行方式与Unix不一样,但是在VI下面如果不Set一下又完全看不出来。 解 阅读全文
摘要:
laravel8.x Eloquent是独立的模块,我们也可以在自己的项目里通过composer来使用Eloquent。 Illuminate Database The Illuminate Database component is a full database toolkit for PHP, 阅读全文
摘要:
一、有主键去重 a、单字段重复 查询重复记录(一条) select aid from ab group by aid having count(*)>1 查询重复记录(全部) select * from ab t where t.aid in(select aid from ab group by 阅读全文