📄 colexist.cpp
字号:
#include "min.h"
Col* sql::colexist(Table* table, int & th)
{
//看列是否存在;存在返回列的地址,不存在返回NULL
Col* col = table->collist;
th=-1;
while ( col->next )
{
th++;
col = col->next;
if ( col->name == colname )
return col;
}
return NULL;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -