Hey, how can I achieve the following statement in drizzle? ```sql -- mysql SELECT * FROM podcasts_title WHERE MD5(guid)='baf59ee6be7bf0cc8140038d7cd641b4' -- ^^^^^^^^^ ``` ```typescript await db .select() .from(podcastsTitle) .where( eq(podcastsTitle.guid, songId) // ^^^^^^^^^^^^^^^^^^ ) ```