Tag: tips

What’s new in SAS Customer Intelligence 6?

SAS announced the launch of SAS Customer Intelligence 6 today at SAS Global Forum. The new release gives a new look and updated functionality to SAS’ core marketing solutions. We want to make sure you stay up-to-date on the latest software release. C…

SQL tip – Inner join shorthand with USING

We write a LOT of SQL here and although SQL is a powerful database language, it can be tedious. So here is one tip for shortening all that typing. Typical join sytax: select some_columns from one_table join another_table on one_table.column_1 = another_table.column_1 and one_table.column_2=another_table.column_2 where some_column > someother_column ; Not too bad, right? In order for […]