Skip to content
Shaikh Shahid
Shaikh Shahid

Software Engineering and Personal Blog

  • About Me
  • Books and Publications
  • Contact
  • Papershelf
  • 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 (5)
  • Database (2)
  • Generative AI (2)
  • Agents (1)
  • AWS (1)

Tags

  • Artificial Intelligence (4)
  • GenerativeAI (2)
  • AIAgents (1)
  • aws (1)
  • firehose (1)

Year

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

Recent Posts

  • What the Heck is Agentic AI Anyway
  • 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

Recent Comments

  1. Zahida Jahangir on What the Heck is Agentic AI Anyway
  2. Zoya on What the Heck is Agentic AI Anyway

Archives

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

Categories

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