您好,登錄后才能下訂單哦!
一、SQL教程
1、SQL語法
DML
select查詢數(shù)據(jù)
update更新數(shù)據(jù)
delete刪除數(shù)據(jù)
insert into插入數(shù)據(jù)
DDL
create database創(chuàng)建數(shù)據(jù)庫表
alter database修改數(shù)據(jù)庫
create table創(chuàng)建表
alter table修改表
drop table刪除表
create index創(chuàng)建索引
drop index刪除索引
set names utf8;設置使用的字符集
SQL語句對大小寫不敏感。
2、SQL SELECT
select * from 表名
select 列名 from 表名
select lastname,firstname from persons;
3、SQL SELECT DISTINCT
select distinct column_name,column_name from table_name;
select distinct country from websites;
4、SQL WHERE
select column_name,column_name from table_name where column_name operator value;
select * from websites where country='cn'
SQL使用單引號('')來圍繞文本值
如果數(shù)字字段,請不要使用單引號。
select * from websites where id=1
下面的運算符可以在where語句中使用:
= 等于
<> 不等于(在sql的一些版本中也可以用!=)
> 大于
< 小于
>= 大于等于
<= 小于等于
between 在某個范圍內
like 搜索某個模式
in 制定針對某列的多個可能值
5、SQL ADN & OR
如果第一個條件和第二個條件都成立,則 AND 運算符顯示一條記錄。
如果第一個條件和第二個條件中只要有一個成立,則 OR 運算符顯示一條記錄。
select * from websites where country='cn' and alexa>50
select * from websites where country ='usa' or country='cn'
select * from websites where alexa > 50 and (country='cn' or country='usa')
6、SQL ORDER BY
ORDER BY 關鍵字用于對結果集按照一個列或者多個列進行排序。
ORDER BY 關鍵字默認按照升序對記錄進行排序。如果需要按照降序對記錄進行排序,您可以使用 DESC 關鍵字。
select column_name,column_name from table_name order by column_name,column_name asc|desc
select * from websites order by alexa
select * from websites order by alexa desc
select * from websites order by country,alexa
7、SQL INSERT INTO
INSERT INTO 語句用于向表中插入新記錄。
insert into table_name values(v1,v2,v3,.....);
insert into table_name(c1,c2) values(v1,v2);
insert into websites(name,url,alexa,country) values('百度','https://www.baidu.com',4,'cn')
id列是自動更新的
insert into websites(name,url,country)values ('stackoverflow','http:/stackoverflow.com','ind')
8、SQL UPDATE
update table_name set c1 = v1,c2 = v2 where c3 = v3;
WHERE 子句規(guī)定哪條記錄或者哪些記錄需要更新。如果您省略了 WHERE 子句,所有的記錄都將被更新!
update websites set alexa =5000,country='usa' where name='菜鳥教程'
9、SQL DELETE
delete from table_name where c1 = v1;
WHERE 子句規(guī)定哪條記錄或者哪些記錄需要刪除。如果您省略了 WHERE 子句,所有的記錄都將被刪除!
delete from websites where name='百度' and country = 'cn'
刪除所有記錄
DELETE FROM table_name;
或
DELETE * FROM table_name;
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。