溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MySQL--數(shù)據(jù)開發(fā)的經(jīng)典案例

發(fā)布時間:2020-10-10 16:50:13 來源:億速云 閱讀:144 作者:小新 欄目:MySQL數(shù)據(jù)庫

這篇文章將為大家詳細講解有關(guān)MySQL--數(shù)據(jù)開發(fā)的經(jīng)典案例,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

數(shù)據(jù)開發(fā)-經(jīng)典

  • 1.按姓氏筆畫排序:

Select * From TableName Order By CustomerName Collate Chinese_PRC_Stroke_ci_as //從少到多
  • 2.數(shù)據(jù)庫加密:

select encrypt('原始密碼')select pwdencrypt('原始密碼')select pwdcompare('原始密碼','加密后密碼') = 1--相同;否則不相同 encrypt('原始密碼')select pwdencrypt('原始密碼')select pwdcompare('原始密碼','加密后密碼') = 1--相同;否則不相同
  • 3.取回表中字段:

declare @list varchar(1000),@sql nvarchar(1000) 
select @list=@list+','+b.name from sysobjects a,syscolumns b where a.id=b.id and a.name='表A'set @sql='select '+right(@list,len(@list)-1)+' from 表A' exec (@sql)
  • 4.查看硬盤分區(qū):

EXEC master..xp_fixeddrives
  • 5.比較A,B表是否相等:

if (select checksum_agg(binary_checksum(*)) from A)
     =
    (select checksum_agg(binary_checksum(*)) from B)
print '相等'elseprint '不相等'
  • 6.殺掉所有的事件探察器進程:

DECLARE hcforeach CURSOR GLOBAL FOR SELECT 'kill '+RTRIM(spid) FROM master.dbo.sysprocessesWHERE program_name IN('SQL profiler',N'SQL 事件探查器')
EXEC sp_msforeach_worker '?'
  • 7.記錄搜索:

開頭到N條記錄Select Top N * From 表
-------------------------------N到M條記錄(要有主索引ID)Select Top M-N * From 表 Where ID in (Select Top M ID From 表) Order by ID   Desc
----------------------------------N到結(jié)尾記錄
Select Top N * From 表 Order by ID Desc

案例 例如1:一張表有一萬多條記錄,表的第一個字段 RecID 是自增長字段, 寫一個SQL語句, 找出表的第31到第40個記錄。  
select top 10 recid from A where recid not  in(select top 30 recid
 from A) 分析:如果這樣寫會產(chǎn)生某些問題,如果recid在表中存在邏輯索引。
select top 10 recid from A where……  是從索引中查找,而后面的select top 30 recid from A則在數(shù)據(jù)表中查找,這樣由于索引中的順序有可能和數(shù)據(jù)表中的不一致,這樣就導(dǎo)致查詢到的不是本來的欲得到的數(shù)據(jù)。

解決方案

1,用order by select top 30 recid from A order by ricid 如果該字段不是自增長,就會出現(xiàn)問題2,在那個子查詢中也加條件:select top 30 recid from A where recid>-1例2:查詢表中的最后以條記錄,并不知道這個表共有多少數(shù)據(jù),以及表結(jié)構(gòu)。set @s = 'select top 1 * from T   where pid not in (select top ' + str(@count-1) + ' pid  from  T)'print @s      exec  sp_executesql  @s
  • 9:獲取當(dāng)前數(shù)據(jù)庫中的所有用戶表

select Name from sysobjects where xtype='u' and status>=0
  • 10:獲取某一個表的所有字段

select name from syscolumns where id=object_id('表名')select name from syscolumns where id in (select id from sysobjects where type = 'u' and name = '表名')
兩種方式的效果相同
  • 11:查看與某一個表相關(guān)的視圖、存儲過程、函數(shù)

select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like '%表名%'
  • 12:查看當(dāng)前數(shù)據(jù)庫中所有存儲過程

select name as 存儲過程名稱 from sysobjects where xtype='P'
  • 13:查詢用戶創(chuàng)建的所有數(shù)據(jù)庫

select * from master..sysdatabases D where sid not in(select sid from master..syslogins where name='sa')
或者select dbid, name AS DB_NAME from master..sysdatabases where sid <> 0x01
  • 14:查詢某一個表的字段和數(shù)據(jù)類型

select column_name,data_type from information_schema.columnswhere table_name = '表名'
  • 15:不同服務(wù)器數(shù)據(jù)庫之間的數(shù)據(jù)操作

--創(chuàng)建鏈接服務(wù)器exec sp_addlinkedserver   'ITSV ', ' ', 'SQLOLEDB ', '遠程服務(wù)器名或ip地址 'exec sp_addlinkedsrvlogin  'ITSV ', 'false ',null, '用戶名 ', '密碼 '
--查詢示例select * from ITSV.數(shù)據(jù)庫名.dbo.表名
--導(dǎo)入示例select * into 表 from ITSV.數(shù)據(jù)庫名.dbo.表名
--以后不再使用時刪除鏈接服務(wù)器exec sp_dropserver  'ITSV ', 'droplogins '
  • –連接遠程/局域網(wǎng)數(shù)據(jù)(openrowset/openquery/opendatasource)

--1、openrowset--查詢示例select * from openrowset( 'SQLOLEDB ', 'sql服務(wù)器名 '; '用戶名 '; '密碼 ',數(shù)據(jù)庫名.dbo.表名)--生成本地表select * into 表 from openrowset( 'SQLOLEDB ', 'sql服務(wù)器名 '; '用戶名 '; '密碼 ',數(shù)據(jù)庫名.dbo.表名)
  • –把本地表導(dǎo)入遠程表

insert openrowset( 'SQLOLEDB ', 'sql服務(wù)器名 '; '用戶名 '; '密碼 ',數(shù)據(jù)庫名.dbo.表名)select *from 本地表
  • –更新本地表

update bset b.列A=a.列A from openrowset( 'SQLOLEDB ', 'sql服務(wù)器名 '; '用戶名 '; '密碼 ',數(shù)據(jù)庫名.dbo.表名)as a inner join 本地表 bon a.column1=b.column1
  • –openquery用法需要創(chuàng)建一個連接

--首先創(chuàng)建一個連接創(chuàng)建鏈接服務(wù)器exec sp_addlinkedserver   'ITSV ', ' ', 'SQLOLEDB ', '遠程服務(wù)器名或ip地址 '
--查詢select *FROM openquery(ITSV,  'SELECT *  FROM 數(shù)據(jù)庫.dbo.表名 ')
--把本地表導(dǎo)入遠程表insert openquery(ITSV,  'SELECT *  FROM 數(shù)據(jù)庫.dbo.表名 ')select * from 本地表
--更新本地表update bset b.列B=a.列BFROM openquery(ITSV,  'SELECT * FROM 數(shù)據(jù)庫.dbo.表名 ') as a 
inner join 本地表 b on a.列A=b.列A
  • –3、opendatasource/openrowset

SELECT   *FROM   opendatasource( 'SQLOLEDB ',  'Data Source=ip/ServerName;User ID=登陸名;Password=密碼 ' ).test.dbo.roy_ta
--把本地表導(dǎo)入遠程表insert opendatasource( 'SQLOLEDB ',  'Data Source=ip/ServerName;User ID=登陸名;Password=密碼 ').數(shù)據(jù)庫.dbo.表名select * from 本地表
SQL Server基本函數(shù)
1.字符串函數(shù) 長度與分析用
1,datalength(Char_expr) 返回字符串包含字符數(shù),但不包含后面的空格
2,substring(expression,start,length) 取子串,字符串的下標(biāo)是從“1”,start為起始位置,length為字符串長度,實際應(yīng)用中以len(expression)取得其長度
3,right(char_expr,int_expr) 返回字符串右邊第int_expr個字符,還用left于之相反
4,isnull( check_expression , replacement_value )如果check_expression為空,則返回replacement_value的值,不為空,就返回check_expression字符操作類
5,Sp_addtype自定義數(shù)據(jù)類型
例如:EXEC sp_addtype birthday, datetime, 'NULL'
6,set nocount {on|off}
使返回的結(jié)果中不包含有關(guān)受 Transact-SQL 語句影響的行數(shù)的信息。如果存儲過程中包含的一些語句并不返回許多實際的數(shù)據(jù),則該設(shè)置由于大量減少了網(wǎng)絡(luò)流量,因此可顯著提高性能。SET NOCOUNT 設(shè)置是在執(zhí)行或運行時設(shè)置,而不是在分析時設(shè)置。SET NOCOUNT 為 ON 時,不返回計數(shù)(表示受 Transact-SQL 語句影響的行數(shù))。
    SET NOCOUNT 
    為 OFF 時,返回計數(shù)
    常識

    在SQL查詢中:from后最多可以跟多少張表或視圖:256在SQL語句中出現(xiàn) Order by,查詢時,先排序,后取在SQL中,一個字段的最大容量是8000,而對于nvarchar(4000),由于nvarchar是Unicode碼。

關(guān)于MySQL--數(shù)據(jù)開發(fā)的經(jīng)典案例就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI