Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2021 12:28 PM
the equivalent code in Apache Spark is:
- XBCUD_Y_TMP1_DF = (XBCUD_DF
- .filter(col("act_ind") == "Y")
- .select(col("cust_hash_key"),
- concat(col("brd_abbr_cd"),col("ctry_cd")).alias("brdCtry"),
- col("updt_dt_hash_key"))
- )