可以通过删除给定字符串或字符前后的空格(1个或更多空格)来更新行吗?我需要去掉特定字符(@)前后的所有空格,同时保持单元格中的其他空格不变。example''This is a simple@example''This is another @example' 'This is another@example'
我在一家公司工作,我需要找到一种方法,在不使用delete函数的情况下从表中删除特定的行。因此,我考虑使用分区,然后使用drop分区(如果存在)删除它:
select *, count(validity_date) over(partition by another_column) asindicator from sche