テーブル従業員はcassandra
です。複数の列によるカサンドラ注文
CREATE TABLE employee (
emp_id text,
joining_date TIMESTAMP,
salary double,
first_name text,
dept text,
last_name TIMESTAMP,
PRIMARY KEY (dept,emp_id));
私はcql
クエリ結果を別の列に基づいてソートする機能が必要です。すなわち、以下のすべてのクエリのサポートが必要です。 ネイティブcassandra
でこれを達成できる方法はありますか?
select * from employee order by emp_id;
select * from employee order by joining_date;
select * from employee order by salary;
select * from employee order by first_name;
etc.,