SQL是Structrued Query Language的缩写,即结构化查询语言。它是负责与ANSI(美国国家标准学会)维护的数据库交互的标准。作为关系数据库的标准语言,它已被众多商用DBMS产品所采用,使得它已成为关系数据库领域中一个主流语言,不仅包含数据查询功能,还包括插入、删除、更新和数据定义功能。最为重要的SQL92版本的详细标准可以查看这里,或者在 Wiki 上查看SQL标准的变化。
-- Comments start with two hyphens. End each command with a semicolon.-- SQL is not case-sensitive about keywords. The sample commands here-- follow the convention of spelling them in upper-case because it makes-- it easier to distinguish them from database, table, and column names.-- Create and delete a database. Database and table names are case-sensitive.CREATEDATABASEsomeDatabase;DROPDATABASEsomeDatabase;-- List available databases.SHOWDATABASES;-- Use a particular existing database.USEemployees;
表
-- Create a table called tablename1, with the two columns shown, for-- the database currently in use. Lots of other options are available-- for how you specify the columns, such as their datatypes./**
CREATE TABLE <table_name1> (
<col_name1> <col_type1>,
<col_name2> <col_type2>,
<col_name3> <col_type3>
PRIMARY KEY (<col_name1>),
FOREIGN KEY (<col_name2>) REFERENCES <table_name2>(<col_name2>)
);
**/CREATETABLEtablename1(fnameVARCHAR(20),lnameVARCHAR(20));-- Check if not exit and createcreatedatabaseifnotexists`test`;USE`test`;SET@OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS,FOREIGN_KEY_CHECKS=0;CREATETABLEIFNOTEXISTS`tblsample`(`id`int(11)NOTNULLauto_increment,`recid`int(11)NOTNULLdefault'0',`cvfilename`varchar(250)NOTNULLdefault'',`cvpagenumber`int(11)NULL,`cilineno`int(11)NULL,`batchname`varchar(100)NOTNULLdefault'',`type`varchar(20)NOTNULLdefault'',`data`varchar(100)NOTNULLdefault'',PRIMARYKEY(`id`));IFOBJECT_ID('tbl_kunde',N'U')isnotnulldroptabletbl_kunde;GOcreatetabletbl_kunde(id_kundeintnotnullprimarykey,fi_moral_nrint,namevarchar(25)notnull,vornamevarcharnotnull,wohnortvarchar);GO-- Insert a row of data into the table tablename1. This assumes that the-- table has been defined to accept these values as appropriate for it.INSERTINTOtablename1VALUES('Richard','Mutt');-- In tablename1, change the fname value to 'John'-- for all rows that have an lname value of 'Mutt'.UPDATEtablename1SETfname='John'WHERElname='Mutt';-- Delete rows from the tablename1 table-- where the lname value begins with 'M'.DELETEFROMtablename1WHERElnamelike'M%';-- Delete all rows from the tablename1 table, leaving the empty table.DELETEFROMtablename1;-- Remove the entire tablename1 table.DROPTABLEtablename1;-- Foreign KeyALTERTABLEtbl_kundeADDCONSTRAINTFK_fi_moral_nrFOREIGNKEY(fi_moral_nr)REFERENCEStkey_moralONUPDATECASCADEONDELETESETNULL;-- ConstraintALTERTABLEtkey_moralADDCONSTRAINTPK_id_moral_nrPRIMARYKEY(id_moral_nr);ALTERTABLEtbl_kundeADDCONSTRAINTFK_fi_moral_nrFOREIGNKEY(fi_moral_nr)REFERENCEStkey_moralONUPDATECASCADEONDELETESETNULL;
select * from expenses where date regexp '2013-0[4-5]' limit 2;
Select with like in where clause
select * from expenses where date like '2013-0%' limit 2;
Select unix timestamp
select unix_timestamp(createtime) from expenses limit 1;
Offset limit
select * from student limit 4 offset 9
Use replace function
UPDATE tb1 SET f1=REPLACE(f1, 'abc', 'def');
Use if function
select Db, IF(IFNULL(User, “”)=”“, DB, User) from db;
-- Select all rows and columns from the current database's departments table.-- Default activity is for the interpreter to scroll the results on your screen.SELECT*FROMdepartments;-- Retrieve all rows from the departments table,-- but only the dept_no and dept_name columns.-- Splitting up commands across lines is OK.SELECTdept_no,dept_nameFROMdepartments;-- Retrieve all departments columns, but just 5 rows.SELECT*FROMdepartmentsLIMIT5;-- Retrieve dept_name column values from the departments-- table where the dept_name value has the substring 'en'.SELECTdept_nameFROMdepartmentsWHEREdept_nameLIKE'%en%';-- Retrieve all columns from the departments table where the dept_name-- column starts with an 'S' and has exactly 4 characters after it.SELECT*FROMdepartmentsWHEREdept_nameLIKE'S____';-- Select title values from the titles table but don't show duplicates.SELECTDISTINCTtitleFROMtitles;-- Same as above, but sorted (case-sensitive) by the title values.SELECTDISTINCTtitleFROMtitlesORDERBYtitle;-- Show the number of rows in the departments table.SELECTCOUNT(*)FROMdepartments;-- Show the number of rows in the departments table that-- have 'en' as a substring of the dept_name value.SELECTCOUNT(*)FROMdepartmentsWHEREdept_nameLIKE'%en%';-- A JOIN of information from multiple tables: the titles table shows-- who had what job titles, by their employee numbers, from what-- date to what date. Retrieve this information, but instead of the-- employee number, use the employee number as a cross-reference to-- the employees table to get each employee's first and last name-- instead. (And only get 10 rows.)SELECTemployees.first_name,employees.last_name,titles.title,titles.from_date,titles.to_dateFROMtitlesINNERJOINemployeesONemployees.emp_no=titles.emp_noLIMIT10;-- List all the tables in all the databases. Implementations typically provide-- their own shortcut command to do this with the database currently in use.SELECT*FROMINFORMATION_SCHEMA.TABLESWHERETABLE_TYPE='BASE TABLE';-- Sub QuerySELECTDISTINCTcourse_idFROMsectionWHEREsemester=‘Fall’ANDyear=2009ANDcourse_idIN(SELECTcourse_idFROMsectionWHEREsemester=‘Spring’ANDyear=2010);
-- Having and without joinselecti.dt_name,count(s.dt_stueck_titel)fromtbl_stueckass,tkey_interpretasiwheres.fi_interpret=i.id_interpretgroupbyi.dt_namehavingcount(s.dt_stueck_titel)>10orderbycount(s.dt_stueck_titel)de-- Join the hard way Inner Joinselects.dt_stueck_titel,i.dt_namefromtbl_stueckass,tkey_interpretasiwheres.fi_interpret=i.id_interpretorderbys.dt_stueck_titel-- Multi Joinselectsa.id_jahr,st.dt_stueck_titel,ip.dt_namefromtbl_stueckasst,tass_stueck_samplerasss,tkey_samplerassa,tkey_interpretasipwheress.id_fi_stueck_nr=st.id_stueck_nrandss.id_fi_jahr=sa.id_jahrandst.fi_interpret=ip.id_interpretorderbyst.dt_stueck_titel-- Join the right way Inner Equi Key Joiningselectdt_stueck_titel,dt_namefromtbl_stueckjointkey_interpretonfi_interpret=id_interpretorderbydt_stueck_titel-- Multi Inner Equi Key Joiningselectid_fi_jahr,dt_stueck_titel,dt_namefromtbl_stueckjointass_stueck_sampleronid_fi_stueck_nr=id_stueck_nrjointkey_interpretonfi_interpret=id_interpretorderbydt_stueck_titel
子查询
-- Select with Subqueries Select max and min valuesselectdt_stueck_titelasTitel,dt_zeitasZeitfromtbl_stueckwheredt_zeit=(selectmax(dt_zeit)fromtbl_stueck)ordt_zeit=(selectmin(dt_zeit)fromtbl_stueck)orderbydt_zeit;-- Select with query in conditionselectdt_stueck_titelasTitel,dt_zeitasZeitfromtbl_stueckwheredt_zeitbetween(selectavg(dt_zeit)fromtbl_stueck)*0.9and(selectavg(dt_zeit)fromtbl_stueck)*1.1orderbydt_zeit;-- Select query as valueselectdt_stueck_titelasTitel,dt_zeit/(selectavg(dt_zeit)fromtbl_stueck)*100asZeitfromtbl_stueckwheredt_stueck_titel='You Shook Me'-- Union Unify two result sets with a conditionselect*from(selectdt_stueck_titelastitel,'stück'as'type'fromtbl_stueckunionselectdt_nameastitel,'inter'as'type'fromtkey_interpretunionselectdt_staoastitel,'stao'as'type'fromtkey_standort)astwheret.titellike'%boy%'
插入与更新
-- Selected fieldsINSERTINTOtkey_moral(id_moral_nr,moral_bez)VALUES(1,'gut'),(2,'schlecht'),(3,'schlecht');-- All fieldsINSERTINTOtbl_kundeVALUES(3838,1,'Meier','Laura','Waldibrücke')INSERTINTOusers(first_name,last_name,email,password,location,dept,is_admin,register_date)values('Fred','Smith','fred@gmail.com','123456','New York','design',0,now()),('Sara','Watson','sara@gmail.com','123456','New York','design',0,now()),('Will','Jackson','will@yahoo.com','123456','Rhode Island','development',1,now()),('Paula','Johnson','paula@yahoo.com','123456','Massachusetts','sales',0,now()),('Tom','Spears','tom@yahoo.com','123456','Massachusetts','sales',0,now());-- Update by conditionsUPDATEtbl_kundeSETNAME='Menzer'WHERENAME='Waltenspühl-Menzer'UPDATEtass_policeSETpraem_stufe=101WHEREpraem_stufe=108-- Deletedeletefromtbl_kundedeletefromtkey_moralwhereid_moral_nr=4deletefromtbl_kundewherevorname='Peter'andname='Fischer'orvorname='Martin'andname='Müller'
MySQL
数据库管理
Name
Command
mysql connect
mysql -u$username -p$password -P$port -h$dbhost $dbname
database encoding
set names utf8;
List databases
show databases;
List tables for current db
show tables;
Check table definition
describe $tablename;
Run sql in non-interactive way
=mysql -uUSER -pPASSWORD databasename -e “select * from t limit 10”=
ALTER TABLE expenses ADD COLUMN createtime timestamp not null default now();
Delete Column
ALTER TABLE expenses DROP COLUMN createtime;
Delete index
DROP INDEX indexname ON table_name;
Create index
create index idindex on table_name(col_name) using btree;
Reset password
UPDATE mysql.user SET Password=PASSWORD(‘MyNewPass’) WHERE User=’root’; FLUSH PRIVILEGES;
drop user 'braindenny'@'%'; flush privileges; CREATE USER...
CREATE USER 'myuser'@'%' IDENTIFIED BY 'MYPASSWORD';
mysql8 grant privileges to user
GRANT ALL PRIVILEGES ON mydbname.* TO 'myuser'@'%' WITH GRANT OPTION;
$mysql-uroot-p-- Show UsersSELECTUser,HostFROMmysql.user;-- Create UserCREATEUSER'someuser'@'localhost'IDENTIFIEDBY'somepassword';-- Grant All Priveleges On All DatabasesGRANTALLPRIVILEGESON*.*TO'someuser'@'localhost';FLUSHPRIVILEGES;-- Show GrantsSHOWGRANTSFOR'someuser'@'localhost';-- Remove GrantsREVOKEALLPRIVILEGES,GRANTOPTIONFROM'someuser'@'localhost';-- Delete UserDROPUSER'someuser'@'localhost';