Skip to content
Shaikh Shahid
Shaikh Shahid

Software Engineering and Personal Blog

  • About Me
  • Books and Publications
  • Resume
Shaikh Shahid

Software Engineering and Personal Blog

Category: Database

SQL Query to Check if Name Begins and Ends with Vowels

Shaikh Shahid, January 9, 2023

Here is a SQL query to check if the name begins and ends with vowels. Assuming you are running this in a MySQL database engine. SELECT NAME FROM USERS WHERE NAME RLIKE '^[AEIOU].*[aeiou]$' Here we are using RLIKE operator to run a regular expression against a column. The regular expression contains the…

Continue Reading
Database MySQL Query caching with Redis

MySQL Query Caching With Redis | Improve MySQL performance with Redis Cache

Shaikh Shahid, January 6, 2023April 21, 2025

By keeping frequently visited data in a temporary storage place known as a cache, caching is a common software development approach used to increase system efficiency. As a result, the system can access the data more quickly than if it had to go back to the original data source each…

Continue Reading

Categories

  • Artificial Intelligence (4)
  • Database (2)
  • Generative AI (2)
  • AWS (1)
  • GoLang (1)

Tags

  • Artificial Intelligence (3)
  • aws (1)
  • firehose (1)
  • GenAI (1)
  • GenerativeAI (1)

Year

  • 2024 (3)
  • 2023 (5)
  • 2022 (5)

Recent Posts

  • Pushing Data to Amazon Kinesis Firehose using GoLang SDK
  • Getting Started with Gemini Flash Model
  • 10 ChatGPT Prompts to Boost Developer Productivity
  • Building Email Spam Detection Model in Python
  • API in Go using Gin Framework

Recent Comments

No comments to show.

Archives

  • June 2024
  • May 2024
  • September 2023
  • February 2023
  • January 2023
  • December 2022

Categories

  • Artificial Intelligence
  • AWS
  • Database
  • Generative AI
  • GoLang
  • Machine Learning
©2025 Shaikh Shahid | WordPress Theme by SuperbThemes