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
  • 相关阅读:
    1月19日
    1月18日
    1月17日
    读后感(1)
    UIAlertView
    plist
    jQuery validation
    HTML <a href >标签的target属性
    HTML DOM
    .与..的区别
  • 原文地址:https://www.cnblogs.com/ailanglang/p/6730516.html
Copyright © 2011-2022 走看看