1. Create your collections for your ecommerce database in MongoDB and fill it with sample information 2. Submit all the queries used to create the database use ecommerceweb db.createCollection('customer') db.customer.insertOne({'cust_id': 01, 'email': 'abc123@gmail.com', 'password': 12547, 'first_name': 'Jas',…
Divya Parihar
updated on 06 Feb 2023
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Divya Parihar (4)
Project 1 - Create a new microservice for allowing customers to getInsurance policy from your banking app
I have submitted whole Microsrvice project 1 in a particular zip folder which contain all the microservice such that accounts, loans, card, insurance & configserver. Also, I have posted snapshort of docker Hub , insurance postman & insurance configProps.
07 Apr 2023 05:27 PM IST
Project 2
1. Create your collections for your ecommerce database in MongoDB and fill it with sample information 2. Submit all the queries used to create the database use ecommerceweb db.createCollection('customer') db.customer.insertOne({'cust_id': 01, 'email': 'abc123@gmail.com', 'password': 12547, 'first_name': 'Jas',…
06 Feb 2023 09:21 PM IST
Project 1
Project 1 ER Diagram TASK- 1 Table Structure TASK 2 e-commerce database Queries CREATE DATABASE ecommercewebsite; CREATE TABLE `ecommercewebsite`.`customer` ( `cust_id` INT NOT NULL, `email` VARCHAR(45) NOT NULL, `password` TEXT(10) NOT NULL, `first_name` VARCHAR(45)…
05 Feb 2023 12:26 PM IST
Project 1
Store.Java package com.ecommerceconsole; import java.util.Scanner; public class Store { public static void main(String[] args) { System.out.println("Welcome to the E-Commerce Store !"); System.out.println("Which user are you? 1. Customer 2. Seller 3. Admin"); Scanner sc = new Scanner(System.in); int choice = sc.nextInt();…
17 Jan 2023 07:14 PM IST