How to create table in SQL Server

CREATE TABLE tblName ( Column1 data_type, Column2 data_type, Column3 data_type, Columnn data_type,...... ) Example:- CREATE TABLE tblStudentRecord ( Name varchar(100), Rollno int primary key, Branch varchar(30),Email varchar(100),Address varchar(200) )

No comments:

Post a Comment

How to register multiple implementations of the same interface in Asp.Net Core?

 Problem: I have services that are derived from the same interface. public interface IService { } public class ServiceA : IService { ...