An Azure relational database service.
But you just need to create a normal database and give users only INSERT and SELECT permissions on all tables (the whole database)
GRANT INSERT, SELECT TO SomeUser
or you can specify on which tables.
GRANT INSERT ON YourTable TO SomeUser
You can also deny all users to delete/update data on all tables
REVOKE UPDATE, DELETE TO abc;