zoukankan      html  css  js  c++  java
  • 工作中的感悟

    今天在工作中走了很多的弯路,仔细回想下  是自己的基础知识太薄弱了,很多知识点都是似是而非的状态,一知半解的,比如 linq中的entity.select(e=>e.Name).contians("sa") 竟然不知道到底返回的是社么类型,要有的专业精神

    还有就是sql的类型装换,完全没有印象了 

                  select MAX (cast(right(CatayCode,6) as int)) from item  where ParentId=9
          select MAX (id) from item  where ParentId=9

    select MAX (cast(right(CatayCode,6) as int)) from item  where ParentId=20)+1 返回来的就是一个数值,不用再转换了

         set @CatayCode=( select CatayCode from item  where id=20)+'001' 赋值是 要有括号的哎 不求甚解的下场啊 

          在很多时候我们痛苦、无助无奈  ……不是我们不行,只是我们不够努力……当拼命的时候,别人会有多少人在玩命呢?一懒二拖三不改进 要么失业要么失恋

  • 相关阅读:
    static关键字详解
    解读equals()和hashCode()
    基于马士兵老师的高并发笔记
    scrapy安装及基本使用
    scrapy 简单操作
    python django简单操作
    Map,Filter 和 Reduce
    2017-08-06笔记
    幂等性
    Jmeter jdbc连接
  • 原文地址:https://www.cnblogs.com/q101301/p/3740365.html
Copyright © 2011-2022 走看看