总结

创建数据库
create database
创建表
create table 
添加
 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 

html+css

   form action  method get post    RequestHeader response   url地址?name1=v1&name2=v2
 
    input type
                text
                password
                radio
                checkbox    checked
                email
                date
                number
                file
                week
    select 
    option  selected
    textarea
         col row
    button
        submit
        reset
        image
        button
   i span img a label 
        header
        footer
        selection
        container
    
  >
  <
   ©
   "
 
  使用方式 三种    行内  style=""
              内嵌    <style>
             外部引用   <link rel="stylesheet" href=""/>
基本选择器
        类:.name
        标签: name
        id:#name
复合选择器
        #name.name
        .name#name
        .name,.name
        .name .name
        .name>.name
        [type='v']
    :hover
    :after
    :before
  color:
 background-color:
   background-image:
   repeat
透明度
 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
扩展盒子高度
        clear:both;
        :after 
        overflow:hidden;
   display:block;
        inline;
    inline-block;
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • 转载请声明 原文链接地址 关注公众号获取更多资讯 第一部分 HTML 第一章 职业规划和前景 职业方向规划定位...
    前端进阶之旅阅读 16,742评论 32 459
  • 一、HTML5 1.1 认识HTML5 HTML5并不仅仅只是作为HTML标记语言的一个最新版本,更重要的是它制定...
    福尔摩鸡阅读 16,360评论 14 51
  • 原文链接 http://blog.poetries.top/2016/10/20/review-jQuery 关注...
    前端进阶之旅阅读 16,841评论 18 503
  • 2017年9月21日 星期四 天气阴 今天来了一个新老师。她又有点温柔又有点凶凶的。他今天要教我们笔顺,他在教的时...
    诗雨_137阅读 1,054评论 0 0
  • 一大早我睁开还有些迷糊的眼睛,猛然大悟:起晚了,昨晚看电视剧晚些,导致一起床就慌张,手忙脚乱的,嘴里嘟囔着“...
    梨花曾开阅读 2,976评论 0 0

友情链接更多精彩内容