1
統計。複数列のヒストグラムは可能ですか?
高密度の2つの列があるが、これらの列が独立していない状況を考えています。 定義 これが、テスト目的で作成したテーブルの定義です。 CREATE TABLE [dbo].[StatsTest]( [col1] [int] NOT NULL, --can take values 1 and 2 only [col2] [int] NOT NULL, --can take integer values from 1 to 4 only [col3] [int] NOT NULL, --integer. it has not relevance just to ensure that each row is different [col4] AS ((10)*[col1]+[col2]) …