zoukankan      html  css  js  c++  java
  • 字符串类型系统函数

     1 /*
     2 SmallInt  是在 2 个字节来存放的整数。 最大值为 32,767。 最小值为 -32,767。 
     3 */
     4 
     5 --select smallint
     6 
     7 select datalength('retetrte') 字符串长度
     8 
     9 select * from systypes where name like '%int%' order by name
    10 
    11 select * from systypes where name like '%da%' order by name
    12 
    13 select * from systypes where name like '%var%' order by name
    14 
    15 select * from systypes where name like '%text%' order by name
    16 
    17 select d1.length,name from systypes d1 where name like '%int%' order by length
    18 
    19 select d1.length,name,* from systypes d1 where name like '%int%' order by d1.name
  • 相关阅读:
    EF 使用 oracle
    mysql安装笔记
    解决问题
    第四次冲刺
    第三次冲刺
    SQA
    第二次冲刺
    第一次冲刺,求进步
    Scrum _GoodJob
    我对git 、github的初印象
  • 原文地址:https://www.cnblogs.com/ailanglang/p/6730516.html
Copyright © 2011-2022 走看看