码迷,mamicode.com
首页 > 数据库 > 详细

Mysql、Oracle、SQL-Server 查询字段值长度

时间:2021-03-10 13:22:12      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:rom   add   sel   sql   不同   pre   rac   class   ddr   

在不同的数据库中,如何查询字段值长度?Mysql、Oracle、SQL-Server 中提供了不同的函数方法。



示例:

-- 查询长度为11位的手机号
-- MySQL: length()
SELECT phone FROM address_book where length(phone) = 11;
-- Oracle: length()
SELECT phone FROM address_book where length(phone) = 11;
-- SQL Server: len()
SELECT phone FROM address_book where len(phone) = 11;

Mysql、Oracle、SQL-Server 查询字段值长度

标签:rom   add   sel   sql   不同   pre   rac   class   ddr   

原文地址:https://www.cnblogs.com/lihuimingxs/p/sql-get-field-value-length.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!