Write a query to create a table in new Schema?
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))
Comments
Post a Comment