如果对关系S(number, name, score)成功执行下列SQL语句:CREATE CLUSTER INDEX name_ index ON S(score)对此结果的描述中,正确的是( )。A.在S表上按salary升序创建了一个唯一索引B.在S表上按salary降序创建了一个唯一索引C.在S表上按salary升序创建了一个聚簇索引D.在S表上按salary降序创建了一个聚簇索引

题目

如果对关系S(number, name, score)成功执行下列SQL语句:CREATE CLUSTER INDEX name_ index ON S(score)对此结果的描述中,正确的是( )。

A.在S表上按salary升序创建了一个唯一索引

B.在S表上按salary降序创建了一个唯一索引

C.在S表上按salary升序创建了一个聚簇索引

D.在S表上按salary降序创建了一个聚簇索引


相似考题
更多“如果对关系S(number, name, score)成功执行下列SQL语句:CREATE CLUSTER INDEX name_ index ON S( ”相关问题
  • 第1题:

    有如下类定义,s是CStudent的一个对象,下列选项都是对该类的应用,正确的是() class CStudent //定义类 { private: int sid; //学号 protected: char *name; //姓名 public: float score; //成绩 };

    A.cout<<s.sid;

    B.cout<<s.sid<<s.name;

    C.cout<<s.score;

    D.cout<<s.name<<s.score;


    cout<

  • 第2题:

    3、若有如下定义,则选项中不正确的语句是_________。 Structure student Dim Name As String Dim score As Integer End Structure Dim s1,s2 as Studen

    A.s2.Name="zhang"

    B.s1 = s2‍

    C.s1.score = s2.score

    D.Student.Name = s2.Name


    structteacher是用户定义的结构体类型

  • 第3题:

    若有如下定义,则选项中不正确的语句是_________。 Structure student Dim Name As String Dim score As Integer End Structure Dim s1,s2 as Student

    A.s2.Name="zhang"

    B.s1 = s2

    C.s1.score = s2.score

    D.Student.Name = s2.Name


    double a=7,b=7;

  • 第4题:

    如果table_name表中有索引index_name,删除此索引的语句错误的是()。

    A.DROP INDEX index_name ON talbe_name

    B.ALTER TABLE table_name DROP INDEX index_name

    C.DROP INDEX table_name.index_name

    D.ALTER TABLE table_name DROP CONSTRAINT index_name


    ALTER TABLE table_name DROP CONSTRAINT index_name

  • 第5题:

    当输入为 ‘cbabc’ 时,下列程序的输出结果为? s1 = raw_input() index = 0 s2 = '' while index < len(s1) - 1: if s1[index] > s1[index + 1]: s2 += s1[index] else: s2 = s2 * 2 index += 1 print s2


    cbcbcbcb