This is for beginner...   

 

How to create DATABASE in MSSQL ?

CREATE DATABASE databasename 

 

 

How to use DATABASE in MSSQL ?

USE databasename

 

 

How to create table in MS-SQL ?


CREATE TABLE tablename            
(                                                                         
         columb_ID INT,                         
        column_Name VARCHAR (100), 
)                                                         

How to see your Table ?

Write...
SELECT*FROM tablename



Thanks for Read :)

Comments

Popular posts from this blog

Tree view in winforms using c#

how to Replace null value with 0 Using C#

how to fetch all HTML Table Records and modify all records accordingly using jquery and Javascript