Skip to content
Advertisement

Tag: snowflake-cloud-data-platform

Not less than operator

In snowflake how do I use a not less than operator? If I want to return all rows that are not less than a value? Not sure if I want to use >= and tried !< but doesnt work Thank Answer There no “not less than” operator, but it’s logically the same as “greater than or equal to”: or, if

Remove characters after space in sql

I have two tables as shown below: I would like to match these two columns i.e FIRST_NAME from table1 to FIRSTNAME from table2. I tried with the below query but only could match Richard and not Kristin. Please suggest! Answer I would add trim to make sure there’s no whitespace preventing a match.

Advertisement