Lines Matching refs:tableName
45 showType.tableName,
49 let maxValue = this.createMaxValueSql(showType.tableName, 'where counter_id = $counter_id');
51 let countSql = this.createSql(startTime, innerTable.tableName, innerTable.columns);
65 showType.tableName,
75 innerTable.tableName,
81 innerTable.tableName,
90 countSql = this.createSql(startTime, innerTable.tableName, innerTable.columns);
130 …private createSliceSql(startTime: number, tableName: string, columns: Array<any>, where?: string):…
146 sliceSelectSql = `${sliceSelectSql }from ${ tableName}`;
153 private createMaxValueSql(tableName: string, where?: string): string {
154 let selectSql = `select max(value) as max_value from ${ tableName}`;
161 …private createSql(startTime: number, tableName: string, columns: Array<any>, where?: string): stri…
174 selectSql = `${selectSql }from ${ tableName}`;