Mastering MS Access: How to Create Tables and Write Custom SQL Queries Why I Still Use SQL in Microsoft Access When I first started working with databases, I realized that while MS Access has a "point-and-click" interface, it is much more powerful when you write the code yourself. In my latest project, I found that using raw SQL queries is faster and more reliable than the standard query builder. I’ve recorded a full video tutorial showing my process, but in this post, I want to break down the logic behind creating tables and the SQL syntax you need to know. You can watch the video tutorial here: Step 1: Planning the Table Structure Before I touch the SQL view, I always define my table relationships. For this tutorial, we are using a Sales demo Database example. My Pro-Tip: Always use a Primary Key with the AutoNumber type. It prevents duplicate records and makes your SQL Joins much easier later on. Here is h ow to create a table. Click on Create tab Click on Ta...
What Are Agentic AI Tools? A Practical Guide to the Frameworks, Protocols, and Platforms Powering AI Agents
A gentic AI tools help AI systems plan, act, use tools, access data, and work across workflows. Learn the top frameworks, protocols, and platforms shaping AI agent. Introduction The phrase agentic AI is everywhere right now, but many articles still blur the line between a chatbot, a workflow, and a real agent system. A chatbot mainly responds to prompts. An agentic system, by contrast, can choose actions, call tools, retrieve information, and continue working until it reaches a goal or exit condition. OpenAI describes this multi-step loop as central to agent behavior, while LangGraph distinguishes clearly between workflows with fixed paths and agents that dynamically define their own tool usage and process. I've been experimenting with the new Agentic AI frameworks this week, and I realized that most people are confusing them with simple chatbots. Here is what I discovered after testing LangGraph vs. OpenAI's loops. That is why the question “What are agentic AI tools?” deser...