當前位置:首頁 » 範本前言 » sql服務的範例
擴展閱讀
中國網路原創新人樂團 2021-03-31 20:26:56
黨政視頻素材 2021-03-31 20:25:44
廈門大學統計學碩士 2021-03-31 20:25:36

sql服務的範例

發布時間: 2021-03-11 12:18:34

❶ 求!SQL server 2008範例資料庫 SQL2008.AdventureWorks_all_databases.x86.msi

去下面地址下載
http://msftdbprodsamples.codeplex.com/

❷ SQL語法範例大全的內 容 簡 介

SQL是關系抄型資料庫的處理語言,具有強大的處理功能。本書以SQL92標准為重點(部分章節增加了SQL:1999和SQL:2003),全面系統地介紹了SQL語法、功能和特點,並以目前廣泛流行的關系資料庫SQL Server 2005/2008和Oracle 9i/10g/11g為基礎,詳細介紹了各種語法的示例,這些示例都是在實際工作中經常用到的,通俗易懂,具有很強的實用性。
本書擁有完善的體系、全面的方法、詳盡的內容和豐富的實例。本書對SQL92語言、SQL Server和Oracle資料庫的語法進行了對照,可作為手冊查閱。書後附有大量詳細的語法功能函數和語句,並對示例進行了索引,可供讀者進行快速查閱。
本書既可作為各大專院校計算機或相近專業的教材,亦可作為從事程序設計、資料庫管理與開發、系統分析與設計等專業技術人員的參考用書,適用面較廣,適合初、中、高級計算機專業技術人員使用。

❸ sql server事務! 怎麼製作! 舉個例子,要帶多個條件的!

-- 前台零售 生成到pos發貨單 一模一樣 單據前綴不一樣
CREATE procere sal_topos
(
@fdjid varchar(20)
)as
declare @fchkflag bit
select @fchkflag=f_chk_flag from salposmas where f_dj_id=@fdjid
BEGIN TRANSACTION
if @fchkflag=0
begin
delete ipposmas where f_dj_id=@fdjid
delete ipposdtl where f_dj_id=@fdjid
if @@error<>0 ROLLBACK TRANSACTION
insert into ipposmas(f_dj_id,f_dj_date,f_int_date,f_cus_no,f_ywy,f_zdr,f_skr,f_chk_flag,f_date,f_chk_date,f_MakeV_flag,f_zf,f_zfr,f_zfr_date,f_cus_type,f_dpt_no,f_wh_no,f_zf_memo,f_season_no,f_type,f_sk_famt,f_text)
select f_dj_id,f_dj_date,f_int_date,f_cus_no,f_ywy,f_zdr,f_skr,f_chk_flag,f_date,f_chk_date,f_MakeV_flag,f_zf,f_zfr,f_zfr_date,f_cus_type,f_dpt_no,f_wh_no,f_zf_memo,f_season_no,f_type,f_sk_famt,'前台零售'+f_dj_id
from salposmas where f_dj_id=@fdjid
if @@error<>0 ROLLBACK TRANSACTION
insert into ipposdtl(f_dj_id,f_seq_no,f_ord_no,f_item_no,f_col_no,f_fx_no,f_size_no,f_uom_no,f_qh_qty,f_kc,f_qty,f_price,f_famt,f_memo,f_qh_flag,f_select,f_bnt_box,f_ph,f_ven_no,f_heaviness,f_zk,f_zk_famt)
select f_dj_id,f_seq_no,f_ord_no,f_item_no,f_col_no,f_fx_no,f_size_no,f_uom_no,f_qh_qty,f_kc,f_qty,f_price,f_famt,f_memo,f_qh_flag,f_select,f_bnt_box,f_ph,f_ven_no,f_heaviness,f_zk,f_zk_famt
from salposdtl where f_dj_id=@fdjid
if @@error<>0 ROLLBACK TRANSACTION
update salposmas set f_MakeV_flag=1 where f_dj_id=@fdjid
if @@error<>0 ROLLBACK TRANSACTION

end
else
begin
delete ipposmas where f_dj_id=@fdjid
delete ipposdtl where f_dj_id=@fdjid
if @@error<>0 ROLLBACK TRANSACTION
end

if @@error<>0 ROLLBACK TRANSACTION

IF @@ERROR=0
begin
COMMIT TRANSACTION
return 0
end
else
begin
ROLLBACK TRANSACTION
return -1
end
--

❹ 誰有《SQL Server範例開發大全》(李俊民. 等編著;清華大學出版),我想買這個書的,不知道裡面的視頻都

《SQLServer範例開發大全》:全書418個典型實例,每個實例都配多媒體教學視頻講解,全面解析SQLServer資料庫管理與開發的強大功能,每個實例都對應一個多媒體教學視頻,高效、直觀,是swf格式的
你可以去卓越亞馬遜購買,免郵費54元,
https://www.amazon.cn/mn/detailApp/ref=as_li_tf_til?asin=B003XT6NQ0&tag=chenyusi&camp=404&creative=2024&linkCode=as1&creativeASIN=B003XT6NQ0&adid=0JZTTQY9JCDG8ZE8R5DF&

❺ sql server寫一條sql例子,怎樣拿到最新日期 簡單點的。。。

獲取當前日期
SELECT GETDATE();

2015-07-13 09:10:44.700

-----------

SELECT CONVERT(VARCHAR,GETDATE(),20);
2015-07-13 09:13:13

❻ 求用sql server 2008設計資料庫的一個例子(盡量詳細一些)

use master
GO

EXEC xp_cmdshell 'md F:\晚餐消費', NO_OUTPUT --實現在D盤下創建computer文件夾
GO

if exists(select * from sysdatabases where name = 'dinnerDatasruse')
drop database [dinnerDatasruse] --判斷如果當前存在'dinnerData'此資料庫,則刪除該資料庫
GO

/*------------創建dinnerDatasruse資料庫-------------*/
create database [dinnerDatasruse]
on primary
(
name = 'dinnerDatasruse_Data',
filename = 'F:\晚餐消費\dinnerDatasruse_Data.mdf',
filegrowth = 15% --文件增長率為15%
)
log on
(
name = 'dinnerDatasruse_Log',
filename = 'F:\晚餐消費\dinnerDatasruse_Log.ldf',
filegrowth = 15% --文件增長率為15%
)
GO

/*----------------------------------------------------------------------------管理員表-----------------------------------------------------------*/

use [dinnerDatasruse]
GO

if exists(select * from sysobjects where name = 'loginInfo')
drop table [loginInfo]
GO
create table [loginInfo]
(
log_id int identity(1,1) not null, ---自增ID
log_UserName varchar(15) not null, ---用戶名
log_Password varchar(15) not null ---密碼
)

--約束
alter table [loginInfo]
add constraint PK_log_id primary key(log_id) --log_id為自增ID

/*----------------------------------------------------------------------------當日信息表-----------------------------------------------------------*/

use [dinnerDatasruse]
GO

if exists(select * from sysobjects where name = 'messgeInfo')
drop table [messgeInfo]
GO
create table [messgeInfo]
(
me_id int identity(1,1) not null, ---自增ID
me_Date varchar(20) not null, ---時間
me_Price float not null, ---當日金額
me_Number int not null, ---人數
me_Avg float not null, ---平均金額
me_remex varchar(50) not null ---備注
)

--約束
alter table [messgeInfo]
add constraint PK_me_id primary key(me_id) --me_id為自增ID

/*----------------------------------------------------------------------------人員信息表-----------------------------------------------------------*/

use [dinnerDatasruse]
GO

if exists(select * from sysobjects where name = 'userInfo')
drop table [userInfo]
GO
create table [userInfo]
(
us_id int identity(1,1) not null, ---自增ID
us_Name varchar(15) not null, ---姓名
us_InMoney float not null ---已付金額
)

--約束
alter table [userInfo]
add constraint PK_us_id primary key(us_id) --us_id為自增ID

/*-----------------------------------------------------------------------------月信息表-------------------------------------------------------------*/
use [dinnerDatasruse]
GO

if exists(select * from sysobjects where name = 'monthInfo')
drop table [monthInfo]
GO
create table [monthInfo]
(
mo_id int identity(1,1) not null, ---自增ID
mo_Name varchar(15) not null, ---姓名
mo_PerMonthMoney float not null, ---個人月付款
mo_MonthNumber int not null, ---當月次數
mo_PerMonthPrice float not null ---個人當月費用
)
--約束
alter table [monthInfo]
add constraint PK_mo_id primary key(mo_id) --mo_id為自增ID

/*-------------------------------------------------------------------------------狀態表-------------------------------------------------------------*/
use [dinnerDatasruse]
GO

if exists(select * from sysobjects where name = 'stateInfo')
drop table [stateInfo]
GO
create table [stateInfo]
(
st_id int identity(1,1) not null, ---自增ID
st_ZhangX int not null, ---張昕
st_ChengY int not null, ---陳勇
st_LuoX int not null, ---羅霄
st_ZhangYJ int not null, ---張永俊
st_LiuZJ int not null, ---劉志建
st_Time varchar(20) not null ---時間
)

--約束
alter table [stateInfo]
add constraint PK_st_id primary key(st_id) --st_id為自增ID

全代碼建庫

❼ 有誰有這個sql server的示例資料庫,裡面有這樣的表

示例資料庫Pubs ,已發郵件,請查收!

❽ 有一本書叫SQL Server範例開發大全適合初學都學嗎

這樣範例的書適合初學者,如果有例題看不明白可以再到網路來搜,或專門提問。