第八次早课

早课问题及答案

第八次早课:

1、MySQL默认配置文件是在哪里?
/etc/my.cnf 
2、赋予权限的最后一个命令
flush privileges
3、允许所有IP可以访问,用什么表示
%
4、插入一条语句的语法
insert into 表名 values(字段1,字段2……)
例如:
    添加全部的数据:
        insert into user values(1,'name',23);
    添加指定某个字段的数据:
        insert into user(name,age) values('name',12);
5、更新一条数据的语法
update 表名 set 要修改的字段=修改的内容 where 字段=值
例如:
    修改指定的数据:
        update user set name='wewe' where id=1;
    修改全部的数据:
        update user set name='wewe';
6、删除一条的语句
delete from 表名 where 字段=值
例如:
    删除全部的数据:
        delete from user;
    删除指定的某个数据:
        delete from user where id=1;
7、查询一张表的语句
select * from 表名 where 字段=值;
例如:
    查询全部的数据:
        select * from user;
    查询符合某个字段的信息:
        select * from user where id=1;
    查询指定字段的数据:
        select name,age from user;
8、排序的语法
order by xxx desc/asc
例如:
    如果不指定顺序,默认为升序:
        select * from user order by id;
    降序:
        select * from user order by id desc;
    升序:
        select * from user order by id asc;
9、降序是什么
降序是desc
例如:
    select * from user order by id desc;
10、聚合函数有哪些
求和:  sum()
求数量:count()
求平均:avg()
例如:
    求数量:
        select COUNT(category_id) from tb_content;
    求和:
        select SUM(category_id) from tb_content;
    求平均:
        select AVG(category_id) from tb_content;
11、聚合语法是什么,也就是分组语法
select 列1,列2……,sum(字段) from 表名 group by 列1,列2…… having sum(字段) > 某个数量;
12、分组语法谨记一个点是什么
不是聚合函数的字段要出现在group by 后面
13、分组语法有个取多少行的语法是什么?比如工资和大于5000
limit
例如:
    select id from tb_content group by id having sum(money) > 5000 LIMIT 2;
14、left join哪个表数据最全?谁去匹配?匹配不上,用什么表示
左边的表最全,右边的表去匹配,匹配不上用null表示
15、hadoop2.x版本有哪三个组件
HDFS Yarn MapReduce
16、分别是什么
HDFS:存储
Yarn:计算
MapReduce:资源调度和作业调度
17、怎样给一个普通用户开root权限
sudo
18、修改哪个文件
/etc/sudoers
19、切换用户,带环境变量的命令
su - 用户
20、讲讲带R的命令和r的命令
带R的命令:chown chmod
带r的命令:rm cp 
21、级联创建文件夹
mkdir -p /xxx/xxx
22、rwx分别代表什么
r:可读
w:可写:
x:可执行
23、软连接是相当于Windows的快捷方式,那么Linux的语法是什么
ln -s 实际路径 软连接路径(最好使用绝对路径)
24、什么叫绝对路径?什么叫相对路径?
绝对路径:cd /xxx/xxx/aaa
相对路径:cd aaa在/xxx/xxx路径下
25、Linux系统之间传输文件夹、文件用什么命令
传输文件:
    scp xxx.log [email protected]地址:/xxx/xxx
传输文件夹:
    scp -r /xxx [email protected]地址:/xxx/xxx
26、一般解压一个压缩包,要注意什么
查看权限
27、jdk默认,我们部署在哪个路径下,假如那个路径不存在,我们要先创建什么
默认/usr/java,如果不存在,需要先创建
28、机器卡了我们要看哪个进程占用内存和cpu较大,命令是什么
top
29、查看端口号命令
netstat -nlp | grep xxx
30、vi里面跳转第一行的快捷键
gg
31、当前行及以下删除快捷键
dG

你可能感兴趣的:(第八次早课)