SQL基础语句

--增、删、改

insert into table1(field1,field2) values(value1,value2)
delete from table1 where 范围
update table1 set field1=value1 where 范围
--join ... on ...
select * from a join b on a.id=b.id

--判断(true false) true返回结果

if exists

--创建视图

create view view_name 
as
select column_name(s)
from table_name
where condition

-- 删除视图

drop view view_name

--创建索引: (索引名) (表名)(索引字段/列)

create index index_name 
on table_name(col1,col2,col3...)

--unique唯一索引

create unique index index_name  
on table_name (column_name)

--删除索引:

drop index idxname
--注:索引是不可更改的,想更改必须删除重新建。

--union 合并多表 all全部列出

select e_name from employees_china
union all
select e_name from employees_usa

--except找到两表之间不同的值
--intersect找到两表之间相同的值

你可能感兴趣的:(SQL基础语句)