テーブルビュー

テーブルビューでは、1つ以上のデータテーブルを結合してカスタムデータセットを作成することができます。これらの定義は、必要な結合を使用して1つ以上のデータテーブルからデータを抽出するためのクエリに変換されます。

定義

列の定義には以下が含まれます。

  • ビューの名前
  • ビューの説明
  • ビューにアクセスするボットやアプリの割り当て
  • ビューは、単一のテーブルまたは複数のテーブルから構築することができます。
    • どちらのタイプでも、以下のことが必要です。
      • テーブルを選択します。
      • ビューに含めるを選択します。sum, avg, min, max and countなどの集計関数を使用することができます。使用例: count(<table_name>.<column_name>)
      • 以下を使用して結果をフィルタリングするための基準
        • 列名 – ドロップダウンリストから選択。
        • 比較演算子 – 「=」、「!」、「<」、「>」から選択
        • 比較値
        • AND/OR演算子で接続された複数のフィルター基準を設定することができます。
      • 同一のデータを<table_name>.<column_name>のようにグループ分けするためのグループ
      • 結果を並べ替えるためのソート<table_name>.<column_name> asc/desc

    • また、複数テーブルビューの場合、以下を設定することで結合基準を指定する必要があります。
      • 結合されるテーブル
      • 結合タイプ(内側、右外側、左外側)
      • 結合列―ドロップダウンリストから選択
      • 「=」「!=」「>」「<」などの演算子を使用して結合基準を指定します。
      • 複数の結合条件を持つことができます。最大4つの結合条件を持つことができます。

On this Page

테이블 뷰

테이블 뷰란 하나 이상의 데이터 테이블을 결합하여 사용자 정의 데이터 세트를 생성할 수 있게 해줍니다. 이러한 정의는 쿼리로 변환되어 필요한 조인을 사용함으로써 하나 이상의 테이블에서 데이터를 가져옵니다.

정의

뷰 정의는 포함합니다:

  • 뷰에 대한 이름입니다.
  • 설명
  • 뷰에 액세스하기 위한 봇 및 앱 할당
  • 뷰는 단일 테이블 또는 다중 테이블에서 구축될 수 있습니다.
    • 두 유형 모두, 다음과 같이 해야 합니다.
      • 테이블을 선택합니다;
      • 뷰에 포함될 을 선택하고, sum, avg, min, max and count와 같은 통계 함수를 사용할 수 있습니다. 사용 예시: count(<table_name>.<column_name>)
      • 다음을 사용하여 결과를 필터링하기 위한 범위
        • 열 이름 – 드롭다운 목록 중 선택;
        • 비교 연산자 – =, !=, < 또는 > 중 선택
        • 비교 연산자
        • AND/OR 연산자로 연결된 다중 필터 범위를 설정할 수 있습니다.
      • <table_name>.<column_name>와 같은 그룹에 같은 데이터를 배열하기 위한 그룹별 열, 그리고
      • 결과의 순서를 지정하기 위한 정렬 기준<table_name>.<column_name> asc/desc

    • 그밖에, 다중 테이블 뷰에 대해서는, 다음을 설정하여 결합 범위를 지정해야 합니다.
      • 결합할 테이블;
      • 결합 유형 내부, 좌 또는 우 외부;
      • 결합 열 – 드롭다운 목록에서 선택하고
      • 연산자 =. !=, > 또는 < 를 사용하여 결합 범위를 지정합니다.
      • 여러 개의 결합 규칙이 가능합니다. 최대 4개의 결합 규칙이 가능합니다.

On this Page

Table Views

Table Views let you create custom datasets by joining one or more Data Tables. These definitions get converted to queries to extract data from one or more data tables by using the required joins.

Definition

View definition includes:

  • Name for the table view.
  • Description of the table view. The description cannot exceed the limit of 100 characters.
  • Assignment of Bot and Apps to access the View
  • A View can be built from a Single Table or Multiple Tables.
    • For both types, you need to
      • select the table;
      • select the columns to be included in the view, you can use aggregation functions like sum, avg, min, max and count. Usage example: count(<table_name>.<column_name>)
      • the criteria for filtering the results using
        • column name – select from the drop-down list;
        • comparison operator – select from =, !=, < or >
        • comparison value
        • you can have multiple filter criteria connected by AND/OR operators
      • the Group By columns for arranging the identical data into groups as <table_name>.<column_name>, and
      • the Sort By columns to order the results as <table_name>.<column_name> asc/desc

    • In addition, for multiple tables view, you need to specify the Join criteria by configuring
      • Table to be joined;
      • the type of join– inner, right outer or left outer;
      • the join columns – pick from the drop-down list and
      • specify the join criteria using the operation =, !=, > or < operators.
      • You can have multiple Join Rules. You can have up to 4 join rules.

On this Page