sqlServer 一些常用的

2021-09-18 01:13:21 字數 1307 閱讀 8883

1.插入資料

insert into t_casename(name,plantid,factoryid,mouldclassid,casequery) 

values('旋轉蓋',1,1,297,'8')

2.表中新增字段

alter table table_name  add column_name datatype

例如:alter table t_mouldclass add pdfuuid char(22) null

3.刪除表中的列

alter table table_name  drop column column_name
4.修改字段

alter table table_name alter column column_name datatype
5.刪除表資料truncate和delete的用法

delete version  where version.fname='2017062602'; 

truncate table t_workshop_datacollection;

6.修改表的資料

update t_auxiliary_tablerelationship 

set t_auxiliary_tablerelationship.casefield = 'mouldtype'

where tablename = 't_repair_notice'

給表t_repair_notice欄位mouldtype賦值

update  t_repair_notice  set  t_repair_notice.mouldtype = project.projecttype

from t_repair_notice ,mould,project

where t_repair_notice.mouldinteriorid = mould.mouldid

and mould.projectid = project.projectid

修改欄位的資料型別

if col_length('t_grading_rule','fieldscore') is not null   

alter table t_grading_rule alter column fieldscore decimal (18,1) null

sqlserver中一些常用的函式總結

去掉空格方面 ltrim 內容 去掉字串左邊的空格 rtrim 內容 去掉右邊的空格 ltrim rtrim 內容 去掉字串左邊和右邊的空格 replace 內容 去掉字串裡所有的空格 查詢替換方面 charindex 要查詢的字元 要查詢的內容 如果找不要要查詢的內容,則返回0,找到返回字串所在的...

SQL Server 一些技巧

keylife富翁筆記 作者 hongyuan 標題 sql server 一些技巧 關鍵字 分類 sql server 2000 密級 私有 評分 回覆 0,閱讀 4 1 重置 identity 欄位的起始值 dbcc checkident table name reseed,0 2 壓縮資料庫 ...

SQL Server的一些系統變數

sql server的一些系統變數 sp configure min server memory 伺服器最小記憶體 gosp configure max server memory 伺服器最大記憶體 gosp configure index create memory 建立索引占用的記憶體 go s...