<span id="blogname"></span>


All that's beautiful drifts away like the waters ——W. B. Yeats
Modisied by Leslie-Cheung.com
 
2024/4/10 13:44:00
常用sql server 语句
 
一、sql server 一次性插入大量数据(100条)。


DECLARE @i INT = 1;
WHILE @i <= 100
BEGIN
    INSERT INTO 表名 (列1, 列2, 列3, ...)
    VALUES (值1, 值2, 值3, ...);
    SET @i = @i + 1;
END;



二、-- 假设您有一个表名为your_table,需要复制的字段为source_column,目标字段为target_column
UPDATE your_table
SET target_column = source_column;


三、-- 假设有个表叫myTable,有两个字段sourceColumn和targetColumn
-- 现在需要将sourceColumn的值复制到targetColumn,并在前后添加特定字符

UPDATE myTable
SET targetColumn = '特定字符' + sourceColumn + '特定字符'

-- 示例中的'特定字符'可以替换为你需要添加的任何字符

 
By 小鱼儿  阅读全文 | 回复(0) | 引用通告 | 编辑

发表评论:
 
Calendar

<<  < 2024 - >  >>
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30

Login


Bulletin
Recent Entries
Comments
Messages
Information
Links


Designed by Subdreamer
 
Powered by Oblog.