数据库
首页 > 数据库> > 25-10000 SQL数据库别名用法

25-10000 SQL数据库别名用法

作者:互联网

 

 

   

--sort 表 分类表
create table Sort(
ID int identity(1,1),
Title nvarchar(50) not null,
Name nvarchar(200) null,
ImgUrl varchar(100) null,
Content nvarchar(max) null,
ViewCount int not null,
Type int not null,
CreateTime Datetime not null,
primary Key(ID),
);
go

select * from Sort;




--别名语法
 select p.Title 
 from Sort AS p 
 where p.Title='标题2';

 --查询sort表中字段名字为李四的值数据  
 select p.Name from Sort AS p 
 where p.Name='李四';

效果:

 

 

标签:Sort,25,10000,Title,int,SQL,null,nvarchar,select
来源: https://www.cnblogs.com/zhuiqiuzhuoyueyouminxing/p/15567123.html