logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

centos ssh登录后添加提示信息

1./etc/ssh/sshd_config文件中PrintMotd 属性修改为 yes #AllowTcpForwarding yes #GatewayPorts no #X11Forwarding no X11Forwarding yes #X11DisplayOffset 10 #X11UseLocalhost yes PrintMotd yes 2.没有该/etc/motd文件新建一个,在

修改eclipse debug的代码源文件

1.进入debug模式2.选中项目,右击选edit the source lookup path,可以添加删除修改debug时相关的源代码

#eclipse
常用几种数据库,取前10条记录的sql语句写法

access:select top (10) * from table1 where 1=1 db2:select column from table where 1=1 fetch first 10 rows only mysql:select * from table1 where 1=1 limit 10 sql server:读取前10条:select top (10) * from ta

#数据库#sql#oracle
到底了