如何在 sql 中 select 不带 ':' 的数字
How to select number without ':' from time in sql
我只想 select 来自 SQL 的 table
中没有 ':' 的唯一数字
试试这个
Select replace(time_column,':','') from table
我只想 select 来自 SQL 的 table
中没有 ':' 的唯一数字试试这个
Select replace(time_column,':','') from table