sql程序
『壹』 sql程序代碼
-----------Mx=10,y=10
ifnotexists(select1fromMwherex=10andy=10)
begin
insertintoM
select10asx,10asy,'A'ast
selectt
fromM
wherex=10andy=10
end
else
begin
---下面的這個賦值查詢必須是一行結果才可以
declare@Rltvarchar(10)
select@Rlt=t
fromM
wherex=10andy=10
if(@Rlt=Aor@Rlt=0)
begin
select@Rlt
end
if@Rlt=1
begin
selectt
fromA
wherex=10andy=10
end
if@Rlt=2
begin
selectt
fromB
wherex=10andy=10
end
if@Rlt=2
begin
selectt
fromB
wherex=10andy=10
end
if@Rlt=3
begin
selectt
fromC
wherex=10andy=10
end
end
『貳』 SQL 編寫程序程序
insert into t1(...) values(...)
『叄』 SQL寫程序語句
sql server的話,用sa登陸不就行了
is exists(select 1 from sysobjects where name='...')
begin
drop table ...
end
go
create table ...
()
『肆』 sql可以編寫應用程序嗎
sql是資料庫查詢語言,用來操作資料庫的。不是編程語言!
http://www.w3school.com.cn/sql/index.asp
這里有個簡單教程
『伍』 SQL程序編寫
declare @n int,@S int,@c int
select @n=0,@s=0,@c=1
while (@c<=50)
begin
if @c % 3=0
begin
set @n=@n+1
set @s=@S+@C
end
set @c=@c+1
end
select @n as [count],@s as [sum]
『陸』 sql是什麼軟體
SQL資料庫
SQL (Structured Query Language) 是具有數據操縱和數據定義等多種功能的資料庫語言,這種語言具有交互性特點,能為用戶提供極大的便利,資料庫管理系統應充分利用SQL語言提高計算機應用系統的工作質量與效率。
SQL語言不僅能獨立應用於終端,還可以作為子語言為其他程序設計提供有效助力,該程序應用中,SQL可與其他程序語言一起優化程序功能,進而為用戶提供更多更全面的信息。
(6)sql程序擴展閱讀:
SQL作為一種操作命令集, 以其豐富的功能受到業內人士的廣泛歡迎, 成為提升資料庫操作效率的保障。SQL Server資料庫的應用,能夠有效提升數據請求與返回的速度,有效應對復雜任務的處理,是提升工作效率的關鍵。
由於SQL Servers資料庫管理系統具有較高的數據管理性能,因其優越的性能,應用范圍非常廣,大量應用於伺服器和客戶體系結構中。SQL Servers資料庫的性質主要由以下幾個方面體現:系統的吞吐量、響應時間以及並行處理能力, 發出請求伺服器回應的速度、還有不同屏幕之間切換的速度等等。
『柒』 用sql語言編寫程序
select 學號,姓名,max(case when 課程='Basic' then 分數 end)as 'Basic',
max(case when 課程='C語言' then 分數 end)as'C語言',max(case when 課程='資料庫' then 分數 end)as'資料庫',max(case when 課程='JAVA' then 分數 end)as'JAVA',AVG(score)as 『平均分』
from
(select a.學號,a.姓名,b.課程,b.分數
from table1 as a
inner join table2 as b
on a.學號=b.學號)as aa
where 學號='20110201008'
group by 學號,姓名
『捌』 SQL語句編寫程序。。
create database xsgl——這個是建庫
create table student
(
學號 varchar(8),
姓名 varchar(8),
年齡 int(2)
)——建表
『玖』 SQL程序代碼
--v_station_smoke_alarm 這種變數已存在,這里就不申明了
if v_station_smoke_alarm=1 and v_smoke_alarm_id=1 --存在
begin
if v_station_smoke_alarm <> is_alarm
begin
if v_station_smoke_alarm = '1'
begin
--M_STATION_REAL 表 SMOKE_ALARM_NUM欄位值加1
update M_STATION_REAL set SMOKE_ALARM_NUM=SMOKE_ALARM_NUM+1 where ?要不要條件進行更新
end
else if v_station_smoke_alarm = '0'
begin
update M_STATION_REAL set SMOKE_ALARM_NUM=SMOKE_ALARM_NUM-1 where ?要不要條件進行更新
end
end
end
--else
begin
if v_station_smoke_alarm = '1'
begin
update M_STATION_REAL set SMOKE_ALARM_NUM=SMOKE_ALARM_NUM+1 where ?要不要條件進行更新
end
end
『拾』 sql的程序代碼
這么多,表結構得寫出來啊。
要不寫也不一定對呀。