如何在 oracle SQL 中单独截断一列?
How to truncate a column alone in oracle SQL?
如何在我的 table 中的所有列中截断指定列?
只需使用 update
语句而不使用 where
条件
Update tablename
set column ='' --or NULL
如何在我的 table 中的所有列中截断指定列?
只需使用 update
语句而不使用 where
条件
Update tablename
set column ='' --or NULL