MySQL 添加序号列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL 添加序号列相关的知识,希望对你有一定的参考价值。

在表abc中添加一个自动添加的序号列num
表abc已存在!!!

alter table abc add num int unsigned auto_increment
如果同时为主键的话,可以这样写
alter table abc add num int unsigned primary key auto_increment
__________________________________________
to:数据库强者 不ok
参考技术A 可以证明你的那个库里面存在abc表

请先执行

drop table abc

然后再运行

create table abc
(
num int primary key not null identity(1,1)
)

ok!!

to :mxm_1123

嘿嘿
有问题请告之!

RadGridView添加序号列

    public class RowNumberColumn : GridViewDataColumn
    {
        public override System.Windows.FrameworkElement CreateCellElement(Telerik.Windows.Controls.GridView.GridViewCell cell, object dataItem)
        {
            TextBlock textBlock = cell.Content as TextBlock;

            if (textBlock == null)
            {
                textBlock = new TextBlock();
            }

            //textBlock.Text = (this.DataControl.Items.IndexOf(dataItem) + 1).ToString(); 
            textBlock.Text = ((this.DataControl.ItemsSource as IList).IndexOf(dataItem) + 1).ToString();

            return textBlock;
        }
    }
<telerik:RadGridView>
    <telerik:RadGridView.Columns>
        <local:RowNumberColumn Width="32" Header="序号"/>
     </telerik:RadGridView.Columns>
</telerik:RadGridView>

 

以上是关于MySQL 添加序号列的主要内容,如果未能解决你的问题,请参考以下文章

mysql中给查询结果添加序号列

mysql在查询结果中自动添加序号字段列

mysql在查询结果中自动添加序号字段列

php读取mysql数据后如何自动添加一个序号列?

在mysql中给查询的结果添加序号列

mysql如何自动增加一列序号