您好,登錄后才能下訂單哦!
小編給大家分享一下怎么使用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語句將行和列進行轉換”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。