软件下载吧文章资讯

分类分类

教你如何删除SQL Server表中的重复数据的方法

2024-02-08 11:17作者:下载吧

添加示例数据

create table Student(
ID varchar(10) not null,
Name varchar(10) not null,
);

insert into Student values(‘1’, ‘zhangs’);
insert into Student values(‘2’, ‘zhangs’);
insert into Student values(‘3’, ‘lisi’);
insert into Student values(‘4’, ‘lisi’);
insert into Student values(‘5’, ‘wangwu’);

展开全部

相关文章

说两句网友评论
    我要跟贴
    取消