Creates a natural key for cruises in format YYYY-MM-NODC where:
YYYY = 4-digit year
MM = 2-digit month
NODC = NODC ship code (from ship table's ship_nodc column)
Examples
if (FALSE) { # \dontrun{
con <- get_duckdb_con()
create_cruise_key(con)
# produces keys like "1998-02-33JD", "2024-01-33UD"
} # }