首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
如表专题
oracle解决因drop命令生成临时表名的问题(如表分区)
转载自:http://blog.csdn.net/lina791211/article/details/12048195 用 purge recyclebin;
阅读更多...
查看mysql数据库的各种属性,如表的大小
会有如下的一个数据库,里面存储着关于该mysql的各种信息。 查看各个数据库的大小: SELECT table_schema, ROUND(SUM(data_length + index_length)/1024/1024, 2)FROM information_schema.TABLES GROUP BY table_schema; 从information_schema.
阅读更多...
【C++】某学校有8名学生参加100米短跑比赛,每个运动员的编号的成绩如表所示,请按照比赛成绩从高到低进行排序并输出结果。
#include<iostream>using namespace std;struct Student {char number[10];char name[10];double score;};int main(){Student temp;Student array[10] ={{"001","李建华",13.6},{"002","张岩",14.8},{"010","胡晓强",12
阅读更多...