阔达煎蛋

文章
4
资源
0
加入时间
2年10月21天

mysql 查看一个表有多少个字段

场景. 一个表的字段已经多到了 让你发怵的时候, 所以别人的项目是很麻烦的解决SELECT count(*)FROM information_schema.columnsWHERE table_name = 'your table name'

C++——运算符重载(二)

友元函数实现复数加法#include <iostream>using namespace std;class Complex{public: Complex() { } Complex(int real,int imag) { this->real_ = real; this->imag_ = imag; }