Skip to main content

Posts

Showing posts from May, 2021

SQL Batabase

SQL:- Structured Query Language Install Xampp.  Install My SQL Workbench. Create Database using below mentioned query:- create database Dpk Datatypes in MySQL:- String Numeric Date and time     Create Database:- create database dpk; execute above query in mysql workbence then create a table using below query:- create table Product( pid int,     pname varchar(50),     pcompany varchar(50),     price int ); show table by using below query:- SELECT * FROM dpk.product; how to insert Data in table:- insert into personal (id, name, birth_date, phone, gender) values(1, "Deepak Tewatia", "1997-08-02", "8398979594", "M") list of constraints in MySQL not null unique default check foreign key primary key to set conditions create table test_2(  id int not null unique, name varchar(50) not null,     age int not null check(age>=18),     phone varchar(12) not null uniq...

Web Development

  WEB DEVELOPMENT FOR FULL STACK DEVELOPMENT C# .net core  .net core API Learn above mentioned course using "freecodecamp" youtube channel UI UI Frame Angular React JS Blazor PHP CSS BOOTSTRAP "Yahoo Baba" youtube channel

Learn HTML Basic

Learn HTML Basic Anyone check the HTML and JavaScript cope of any website in browser using Inspect element button (ctrl+shift+i). Inspect element button can found on clicking right click of mouse in browser such as google chrome, Microsoft edge etc.