1樓:
結構化查詢語言(structured query language)簡稱sql(發音:/ˈes kjuː ˈel/ "s-q-l"),是一種特殊目的的程式語言,是一種資料庫查詢和程式設計語言,用於存取資料以及查詢、更新和管理關聯式資料庫系統;同時也是資料庫指令碼檔案的副檔名。
一、插入(複製)表資料
1、insert into 語句:
(1)插入新的一行數
[sql] view plain copy;
insert into persons values ('gates', 'bill', 'xuanwumen 10', 'beijing');
(2)在指定的列中插入資料
[sql] view plain copy;
insert into persons (lastname, address) values ('wilson', 'champs-elysees');
2、sql select into 語句可用於建立表的備份復件
(1)在建表時複製所有資料
[sql] view plain copy;
create table userinfo_new as select * from userinfo;
(2)在建表時複製部分資料
[sql] view plain copy;
create table userinfo_new1 as select id,username from userinfo;
(3)在新增時複製所有資料
[sql] view plain copy;
insert into userinfo_new select * from userinfo;
(4)在新增時複製部分資料
[sql] view plain copy;
insert into userinfo_new(id,username) select id,username from userinfo;
二、修改表資料
update 語句
(1)無條件更新
[sql] view plain copy;
update userinfo set userpwd='111',email='[email protected]';
(2)有條件更新
[sql] view plain copy;
update userinfo set userpwd='123456' where username='***';
三、刪除表資料
1、delete 語句
(1)無條件刪除
[sql] view plain copy;
dalete from userinfo;
(2)有條件刪除
[sql] view plain copy;
delete from userinfo where username='yyy';
四、查詢表資料
1、select 語句:
(1)查詢所有欄位
[sql] view plain copy;
select * from users;
(2)查詢指定欄位
[sql] view plain copy;
select username,salary from users;
2、select distinct 語句
從 company" 列中僅選取唯一不同的值,需要使用 select distinct 語句:
[sql] view plain copy;
select distinct company from orders;
2樓:匿名使用者
常用的也不只這些:
1、說明:建立資料庫
create database database-name
2、說明:刪除資料庫
drop database dbname
3、說明:備份sql server
--- 建立 備份資料的 device
use master
exec sp_addumpdevice 'disk', 'testback', 'c:\mssql7backup\mynwind_1.dat'
--- 開始 備份
backup database pubs to testback
4、說明:建立新表
create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)
根據已有的表建立新表:
a:create table tab_new like tab_old (使用舊錶建立新表)
b:create table tab_new as select col1,col2... from tab_old definition only
5、說明:刪除新表
drop table tabname
6、說明:增加一個列
alter table tabname add column col type
注:列增加後將不能刪除。db2中列加上後資料型別也不能改變,唯一能改變的是增加varchar型別的長度。
7、說明:新增主鍵: alter table tabname add primary key(col)
說明:刪除主鍵: alter table tabname drop primary key(col)
8、說明:建立索引:create [unique] index idxname on tabname(col....)
刪除索引:drop index idxname
注:索引是不可更改的,想更改必須刪除重新建。
9、說明:建立檢視:create view viewname as select statement
刪除檢視:drop view viewname
常用sql語句
用友常用的幾條資料庫sql語句,資料庫中常用的sql語句有哪些
在baimaster庫執行 重新du安裝用友前資料zhi庫還能使用的時dao候生成內附加語容句 select name from select dbid,0 as fid,sp attach db dbname n name as name from master.sysdatabases wher...
sql語句能直接操作一張表的某個值加1或者減1麼
sql語句 將一個表的某個值加1或減1,直接用update語句即可。工具 mysql 5.6 步驟 1 如圖,student表中有如下資料 3 執行後結果 update tablename set目標值 目標值 1 1 where 查詢條件 update 表名 set jine jine 1結構化查...
電腦常用的作業系統有哪些,常見的電腦作業系統有哪些?
目前作業系統種類繁多,很難用單一標準統一分類。根據作業系統的使用環境和對作業處理方式來考慮,可分為批處理系統 mvx dos vse 分時系統 windows unix xenix mac os 實時系統 iemx vrtx rtos,rt linux 根據所支援的使用者數目,可分為單使用者 msd...