insert into tablename (column1,column2,column3,......) values (value1,value2,value3,......);
insert into tablename values(value1,value2,....);
查詢
select * from tablename;
select * from tablename where 條件1 and (or) 條件2 column like '%' column in (列表)
group by groupbycolumn
having
order by asc (desc)
limit 10,2
查詢幾組
select * from tablename limit 3,5;
table1 inner join table2 on column1=column2
from table1,table2 where column1=column2
table1 left join table2 on column1=column2
table1 right join table2 on column1=column2
union
union all
刪除
delete from tablename where id=1;
修改
update tablename set column1=value1,colum2=value2 where id=1;
[選修]update table1 t1,table2 t2 set t1.c1=v1,t2.c2=v2 where id=1 and t1.keyId=t2.keyId
opacity
rgba(0,0,0,.5)
transparent
text-align:left right center;
line-height
letter-space
border-top left right bottom
margin:10px 20px 30px 40px;
padding:10px 20px 30px 40px;
border-radius
box-sizing border-box
content-box
box-shadow
font-family
font-size;
font-style:none
background-position
background-size
position relative
fixed
static
absolute
left top right bottom
z-index
float: left right
clear: left right both