摘要:
1、如何将 hellodb_innodb.sql导入到数据库中 mysql < hellodb_innodb.sql 2、在学生表中,查询年龄大于25岁,且为男性的同学的名字和年龄 select name,age from students where age>25 group by gender; 阅读全文
摘要:
1、linux查看系统进程的命令是 pstree -p 或 pa aux 或 pe -ef 2、在超级用户下显示linux系统中正在运行的全部进程,使用的命令和参数 ps aux |grep R 3、在linux操作系统中,现在查看tomcat的进程状态使用命令是 ps aux|grep tomca 阅读全文