Add AI predictions to your database queries using simple SQL - no ML expertise needed!
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
1. Amazon SageMaker:
2. Amazon Comprehend:
Use Case 1: Product Recommendations
SELECT product_id, product_name,
ml_predict_recommendations(user_id) AS recommended
FROM products;