What is Aurora Machine Learning?

Add AI predictions to your database queries using simple SQL - no ML expertise needed!


How It Works

Your Application
      ↓
SQL query: "SELECT recommended_products FROM..."
      ↓
Amazon Aurora
      ↓
Sends user data to ML service
      ↓
Amazon SageMaker or Comprehend
      ↓
Returns predictions
      ↓
Aurora returns results to application

Supported Services

1. Amazon SageMaker:

2. Amazon Comprehend:


Example Use Cases

Use Case 1: Product Recommendations

SELECT product_id, product_name,
       ml_predict_recommendations(user_id) AS recommended
FROM products;