簡單MSSQLServer語句

2021-07-28 10:15:42 字數 937 閱讀 7327

-- 常見的的sql語句

-- 資料庫 ms sqlserver

-- db 代表資料庫;-- tb 代表表;-- col 代表列;-- 表table 行 row 列 column

-- 備份資料庫

backup database db to disk = 'f:\dbbak\....\db.bak'

-- 備份資料表

select * into tb_20170116bak from tb

-- 增 

insert into tb values (值1, 值2,....)

insert into tb (列1, 列2,...) values (值1, 值2,....)

-- 刪除表中資料

delete from tb where .....

truncate table tb

-- 刪除表

drop table tb

-- 改 更新

update [tb set col1='值' where col2='值'

-- 查

--擷取表中字段字串

--擷取前4位

substring(col,0,5)

group by  -- 對結果集進行分組

order by  --排序 asc:公升序

desc:降序

-- 例子:

select 欄位名 = '字段值',substring(col,0,5) as 欄位名,count(*) as 數量

from tb  where col = '****'

group by  substring(col,0,5)

order by substring(col,0,5) asc

-- mysql 查詢前10條

select request_url from sys_log limit 10

MS SQL Server的T SQL語句(一)

最近面試碰到乙個sql server語句選擇題 建立乙個名為 customers 的新錶,同時要求新錶中包含表 clients 的所有記錄,sql語句是 選擇一項 a select into customers from clients b select into customers from cl...

mysql簡單語句 mysql簡單語句

建立名為user的資料庫 create database user 顯示所有資料庫 show databases 選擇名為user的資料庫 use user 顯示所有表 show tables 建立名為mytable的表 mysql create table mytable username var...

mysql簡單語句 mysql簡單語句

建立名為user的資料庫 create database user 顯示所有資料庫 show databases 選擇名為user的資料庫 use user 顯示所有表 show tables 建立名為mytable的表 mysql create table mytable username var...