Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不确定我在搜索什么命令,所以我不可能在 Google 上找到它,因为我能找到的最接近的东西是限制返回的行数。
我有一张邮政编码表,有些是 5 个字符(12345),有些是较长的 5 个字符 -dash- 4 个字符(12345-1234)。我想选择所有邮政编码,以便长度限制为 5 个字符(它们看起来都像 12345)。
先感谢您。
select SUBSTRING(zipcode,1,5) as zip_code from zipcode_table;
采用SUBSTR
SUBSTR
SELECT SUBSTR(zip, 1, 5) AS zip FROM yourtable
这是sqlfiddle