温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么使用SQL语句将行和列进行转换

发布时间:2021-05-20 10:43:24 来源:亿速云 阅读:244 作者:小新 栏目:数据库

小编给大家分享一下怎么使用SQL语句将行和列进行转换,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

  如何使用SQL语句将行和列进行转换

  if exists ( select * from sysdatabases where [name]='TestDB')

  print 'Yes, the DB exists'

  else

  print 'No, need a new one?'

  --新建一个数据库

  create database TestDB on

  (

  name = 'TestData',

  filename = 'G:DBSKeyTest.mdf',

  size = 3,

  filegrowth = 2

  )

  log on

  (

  name = 'TestLog',

  filename = 'G:DBSKeyTest.ldf',

  size = 3,

  filegrowth = 10

  )

  --drop database TestDB

  use TestDB

  go

  --新建一个表

  create table [Scores]

  (

  [ID] int identity(1,1) primary key,

  [Student] varchar(20) ,

  [Subject] varchar(30),

  [Score] float

  )

  --drop table [Scores]

  如何使用SQL语句将行和列进行转换

  --修改表中的一列

  alter table Scores alter column [Student] varchar(20) not null

  --新增一列

  alter table Scores add Birthday datetime

  --删除一列

  alter table Scores drop column Birthday

  --往表中插入单条数据,方法1:带列名

  insert into Scores(Student,Subject,Score)

  values('张三','语文','90')

  --往表中插入单条数据,方法2:不带列名,但要求值的类型要和列字段类型对应

  insert into Scores

  values('张三','英语','95')

  --插入多条数据:用union或者union all

  insert into Scores(Student,Subject,Score)

  select '李四','语文','89'

  union all

  select '李四','英语','78'

  --删除表中数据,没有条件时,删除所有

  delete from Scores where ID in(7,8)

  --修改表中数据

  update Scores

  set Student='王五',Score='94'

  where ID=10

  --查看数据

  select * from Scores

  --查看表中最大的identity值

  select @@identity

  --或者利用dbcc命令查看表中最大的identity值

  dbcc checkident('Scores',noreseed)

  --创建视图,全部省略视图的属性列名,由子查询目标列的字段组成

  create view StudentView

  as

  select Student,Subject,Score

  from Scores

  --加上with check option,以后对视图的操作(增,改,删,查)都会自动加上where ID>3

  /*

  create view StudentView

  as

  select Student,Subject,Score

  from Scores

  where ID>3

  with check option

  */

  --创建视图,全部定义属性列名,需要定义列名的情况:

  ----某个目标列(子查询)不是单纯的属性列,而是聚集函数或列表达式

  ----多表连接时选出了几个同名列

  ----需要在视图中为某个列启用新的更合适的名字

  create view IS_Student(Student,Subject,MaxScore)

  as

  select Student,Subject,Score

  from Scores

  where Score=(select max(Score) from Scores)

  --查询视图,和基本表完全样,只不过如果视图中有with check option,会自动加上那个条件

  select *

  from StudentView

  --查询自定义列名的视图

  select *

  from IS_Student

  --对视图的insert/delete/update,和对基本表的操作一样,并且最终都是用RDBMS自动转换为对基本表的更新

  --并不是所有的视图都是可更新的,因为有些视图的更新不能有意义的转换成对相应基本表的更新

  --删除视图

  drop view StudentView

  --查询数据库是否存在

以上是“怎么使用SQL语句将行和列进行转换”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

sql
AI