python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Group by a column and ignore whitespace and special characters?
I am trying to find records in my database (SQL Server) that have values in common. I am grouping them and counting them as below:
select count(ItemNum) as RecordCount, Vendor, PartNumber
from Produc...
GreySage
Votes: 0
Answers: 2
Pyspark code giving wierd whitespace error
When I ran this query, zip code is getting some hidden whitespace which pushes over to data-source column. Tried trim function and trim with carriage return, whitespace is not getting removed. Any su...
Reshma Joseph
Votes: 0
Answers: 0
Cross referencing data and removing entire lines that contain same string with Python
Cutting to the chase here...
I have 2 sets of data, both in .txt files.
We will call them DATA A and DATA B.
I am currently collecting information from other students for a mailing list / club applica...
KEEP BUSY
Votes: 0
Answers: 0
Oracle regex for remove single letters
I need to remove spaces with single letters.
Example :- select 'A D N WARUNA' from dual; output maybe 'ADN WARUNA'
select 'W M P NUWAN Bandara' from dual; output maybe 'WMP NUWAN Bandara'
dami_prasa
Votes: 0
Answers: 2