求個SQL指令碼解釋

2022-12-16 13:01:08 字數 1923 閱讀 7335

1樓:

-- 刪除 sysparam 表中 p_name 等於 authercase 的記錄

delete from sysparam where p_name = 'authercase'

go---- from date:2010-05-01 to date:2010-06-01

---- 37:@oteu2venn6280ckc;=:

--set valid

-- 如果sysparam 表中沒有 p_name 等於 authercase 的記錄則插入一條p_name = authercase的記錄

if not exists(select * from sysparam where p_name = 'authercase')

insert into sysparam

( p_name, p_type, p_string, p_int, p_float, p_date, note, category, p_sort )

values ('authercase', 'c', '37:@oteu2venn6280ckc;=:

go-- 如果客戶端機器名稱不為空,則更新sysparam 表中p_name='serverkey'的記錄的p_string為客戶端機器名稱

update sysparam set p_string=host_name() where p_name='serverkey' and host_name() is not null

go-- 如果服務端機器名稱不為空,則更新sysparam 表中p_name='serverkey'的記錄的p_string為服務端機器名稱

update sysparam set p_string=@@servername where p_name='serverkey' and @@servername is not nullgo

2樓:匿名使用者

delete from sysparam where p_name = 'authercase'

刪除該表裡欄位p_name = 'authercase'的

if not exists(select * from sysparam where p_name = 'authercase')

insert into sysparam

( p_name, p_type, p_string, p_int, p_float, p_date, note, category, p_sort )

values ('authercase', 'c', '37:@oteu2venn6280ckc;=:

判斷表裡是否還有p_name = 'authercase' 如果沒有插入一行記錄 字段值對應相應的字段 這個不用解釋了吧

go 繼續

update sysparam set p_string=host_name() where p_name='serverkey' and host_name() is not null

更新 sysparam 表中 p_string 他的值 條件為 p_name='serverkey' and host_name() is not null

where 語句不用解釋吧 這個要是不懂你最好自己看書 最最基礎的的東西

update sysparam set p_string=@@servername where p_name='serverkey' and @@servername is not null

同理 更新sysparam 表中p_string欄位的值 where 後為更新條件

求perl的指令碼,求一個perl的指令碼

你的程式沒有問題的啊,要是替換多個短語加個for就好了 1 chomp my keyword while data 123 123 456 789 123 456 123 33 while while print 泰暎 usr bin perl w use strict die perl 0 n u...

如何通過SQL指令碼建立資料庫,通過SQL語句使用什麼命令建立資料庫

開啟sql查詢分析器,單擊 檔案 開啟,選擇你的sql指令碼,然後點選執行,或者f5 用sql語句建立資料庫的語法 第一步 先要判斷當前資料庫系統中是否存在你要新建的資料庫,如果是就要刪除 master系統資料庫中的sysdatabases表中存放了所有資料庫清單 if exists select ...

求按鍵精靈的指令碼,求乙個按鍵精靈的指令碼

別著急,我來給你編乙個。還有兩個問題要確認一下,你是想讓指令碼一直迴圈執行嗎?顏色不是你說的紅色和綠色那麼簡單,必須精確,所以我編的指令碼需要你自己再確認一下顏色,修改顏色 我的指令碼裡假設第乙個點座標為x1,y1,第二個點座標為x2,y2,第三個點 求乙個按鍵精靈滑鼠左右連點指令碼 按鍵精靈方面問...