Git Product home page Git Product logo

skillark.me's Introduction

DATABASE

To create database

create database skillark;

To use create database

use skillark;

To create UserPool table

create table UserPool(email varchar(1000) not null primary key,firstName varchar(100),lastName varchar(100),uniqueCode varchar(100),phone varchar(100),password varchar(200),image varchar(100),linkedIn varchar(100),address varchar(500),createdOn date,updatedOn date,createdBy date);

To create transactions table

create table transactions(email varchar(100),name varchar(100),coursecode varchar(100),transaction_hist JSON,status bool);

To Create contactus Table

create table contactus(userid int not null primary key auto_increment,email varchar(50),firstname varchar(100),lastname varchar(100),reason varchar(200),phone varchar(20),message varchar(300));

To create CourseMaster Table

create table CourseMaster(id int primary key auto_increment,uniqueCode varchar(100),title varchar(100),description varchar(100),thumbnail varchar(200),price int,list json,accordion json,vedio varchar(400))

To create instructorMaster

create table InstructorMaster(id int primary key auto_increment,uniqueCode varchar(100),designation varchar(100),description varchar(500),image varchar(100),about varchar(100),email varchar(100),address varchar(500),course json,phone varchar(50),name varchar(100));

To create user_assesment_mapping

create table UserAssesmentMapping(userAssesmentId int auto_increment primary key,userAssesmentCode varchar(100),userCode varchar(100),assesmentCode varchar(100),assesmentGainedMarks int,assesmentTotalMarks int,assesmentPerformancePercentage int,createdOn varchar(100),updatedOn varchar(100),timeTaken int)

To create quizjson

create table QuizJson(testCode varchar(100),testTitle varchar(100),startDate date,endDate date,maxMarks int,duration int,testType varchar(100),questions json)

UPDATE tableName SET column name=CONCAT('CRSE-', UNIX_TIMESTAMP(created_on)) WHERE xyz

skillark.me's People

Contributors

cvasingh avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.