在 table 中找到只有第二位有白色 space 的 SPECIFIC 记录?

Find the SPECIFIC records in the table which have white space on second place only?

我有 xyz 的记录 table。有一栏像

0025336625
0036625336
9986698852
0 22336652
1 32236633
9333265556
8 44555223

所以我只需要从 table 中获取这些记录,它只是粗体。

您可以使用 substr 来过滤列

select * 
from my_table 
where substr(my_column, 2, 1 ) = ' ';