How to know this clarification for this concept

Posted by Jayakumars under C# on 3/28/2017 | Points: 10 | Views : 1384 | Status : [Member] [MVP] | Replies : 0
Hi

What is the Difference Between schema with table vs without schema table.

I am create one table 1. without schema and 2. with schema one table

what is difference between both table and advantages and disadvantages

why we need go to schema with table? any one guide me proper way


create table temp1
(
Id int,
Empno varchar(20)
)

create schema temp

create table temp.temp1
(
Id int,
Empno varchar(20)
)

Mark as Answer if its helpful to you

Kumaraspcode2009@gmail.com



Responses

(No response found.)

Login to post response