Can objects be replaced in GridDB through SQL/TQL?
I have numerous tables and views created in GridDB that are constantly changing and being recreated.
GRidDB(SQL) solution for probability whether a specific user will order specific product in future based on previous data from tables using gridDB SQL
I was given a requirement where i have to find probability for a specific user ordering specific item in future based on his purchases in previous months so that inventory can be stocked.
Tables:
CREATE TABLE customers (
c_id INT PRIMARY KEY,
c_name VARCHAR(100),
);
probability for whether a specific user will order specific product in future based on previous data from tables using gridDB SQL
I was given a requirement where i have to find probability for a specific user ordering specific item in future based on his purchases in previous months so that inventory can be stocked.
Tables:
CREATE TABLE customers (
c_id INT PRIMARY KEY,
c_name VARCHAR(100),
);