美文网首页php社区
powerdesigner建索引

powerdesigner建索引

作者: jtw | 来源:发表于2018-03-09 10:46 被阅读0次

    1、打开表

    微信图片_20180309103743.png

    选择indexes标签,双击选中边框,出现如下图:


    微信图片_20180309103758.png

    2、填写索引名称(上图所示)

    点击Columns:


    微信图片_20180309103805.png

    单击选中如图。

    3、选则索引字段

    微信图片_20180309103810.png

    4、点击应用生成索引

    /*==============================================================*/
    /* Index: category_id                                           */
    /*==============================================================*/
    create index category_id on o_link_prod
    (
       category_id
    );
    
    /*==============================================================*/
    /* Index: barcode_id                                            */
    /*==============================================================*/
    create index barcode_id on o_link_prod
    (
       barcode_id
    );
    

    相关文章

      网友评论

        本文标题:powerdesigner建索引

        本文链接:https://www.haomeiwen.com/subject/qplpfftx.html