Skip to main content

Posts

Featured

Sql queries

  Products +-------------+---------+ | Column Name | Type | +-------------+---------+ | product_id | int | | low_fats | enum | | recyclable | enum | +-------------+---------+ product_id is the primary key (column with unique values) for this table. low_fats is an ENUM (category) of type ('Y', 'N') where 'Y' means this product is low fat and 'N' means it is not. recyclable is an ENUM (category) of types ('Y', 'N') where 'Y' means this product is recyclable and 'N' means it is not. creation Create table Products (product_id int, low_fats varchar(1) not null check( low_fats in('Y', 'N')) , recyclable varchar(1) not null check( recyclable in('Y', 'N'))) insert into Products (product_id, low_fats, recyclable) values ('0', 'Y', 'N') insert into Products (product_id, low_fats, recyclable) values ('1', 'Y', 'Y') insert into Products...

Latest posts

React with componet type script for radiobutton and textboxes , textarea

Dynamic React components and ascii dropdown using Type script

React Compenent Class Typescript Reusalbe

React component Inheritance

React login with custom input and button

mongoose 01

delet

updatemay

Promise

InsertMany