select.h
来自「在VC6环境下开发」· C头文件 代码 · 共 17 行
H
17 行
#ifndef _SELECT_H_
#define _SELECT_H_
void eDbSelectDelete(Select *p);
Select *eDbSelectNew(
ExprList *pEList, /* which columns to include in the result */
SrcList *pSrc, /* the FROM clause -- which tables to scan */
Expr *pWhere, /* the WHERE clause */
ExprList *pGroupBy, /* the GROUP BY clause */
Expr *pHaving, /* the HAVING clause */
ExprList *pOrderBy, /* the ORDER BY clause */
int isDistinct /* true if the DISTINCT keyword is present */
);
int eDbSelect(
Parser *pParse, /* The parser context */
Select *p);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?