Create table in way schema table orders Get link Facebook X Pinterest Email Other Apps August 23, 2022 Create Table way.orders ( Order_num int, order_date date, Customer_id int, Rep int, MFR varchar(15), Product varchar(15), qty int, Amount money primary key (Order_num) ) Read more
Insert command into Products in SQL Server Get link Facebook X Pinterest Email Other Apps August 21, 2022 USE [SqlKiPathashala] GO INSERT INTO [dbo].[Products] ([MFR_ID] ,[Product_id] ,[Describtion] ,[price] ,[QTY_IN_HAND]) VALUES ('REI' ,1 ,'Ratchet link' ,579 ,210) GO Read more
Write a query to create a table in new Schema? Get link Facebook X Pinterest Email Other Apps August 14, 2022 Step 1: Create A Schema use SqlKiPathashala Create Schema Way; Step 2: CREATE TABLE Way.Products ( MFR_ID varchar(15), Product_id int not null, Describtion text, price money, QTY_IN_HAND int Primary Key (Product_id)) Read more