创建索引 create [unique | fulltext] index index_name on table_name (index_col_name,...); 查看索引 show index from table_name; 删除索引 drop index index_name on table_name; 案例演示: 先来创建一张表 tb_user,并且查询测试数据。 cre…
最近写的零零散散的,感觉这两天遇到的题对于短时间提升意义已经不大了,还是做简单题保持手感吧哎 盖印章
#include <iostream>
using namespace std;
using LLlong long;
int main()
{ios::sync_with_stdio(false);cin.tie(0),cout.tie(0);LL n,m…