第1关:Hive -- 索引 ---创建mydb数据库
create database if not exists mydb;
---使用mydb数据库
use mydb;
---------- Begin ----------
---创建staff表
create table staff(
id int,
name string,
sex string)
row format delimited fields terminated by ,
stored…
1. 查看慢查询日志是否开启
show variables like slow_query%;
show variables like slow_query_log;
参数说明:
1、slow_query_log:这个参数设置为ON,可以捕获执行时间超过一定数值的SQL语句。
2、long_query_time:当SQL语句执行…
c# 程序结构
using System.Collections.Generic;
namespace demo1; //一个命名空间可以包含多个类
using System.IO;
using System.Drawing;class proj
{/// <summary>/// c#是微软开发的,基于c和c的一种面象对象编程语言,用于快速开发windows桌…