/ Undifined / Create Table in SQL

Create Table in SQL



Create table             
Create Table in SQL:-SQL में हम TABLE को निम्नलिखित तरीके से create करते है।
 SYNTAX:-CREATE TABLE table_name(column_name1 data_type,column_name2 data_type,)अब हम निम्न उदाहरण के द्वारा इसको आसानी से समझ सकते है:-इस उदाहरण में हमने Student के नाम से table बनाई है जिसमें चार columns है।column के नाम Last Name, First Name, Address तथा Roll number है।CREATE TABLE Student(Last Name varchar,First Name varchar,Address varchar,Roll number int,) यदि हमने column के अधिकतम साइज़ को specify करना हो तो-CREATE TABLE Student(Last Name varchar(30),First Name varchar,Address varchar,Roll number int(5),)                       

about author

Blogger Sens it website about blogger templates and blogger widgets you can find us on social media
Previous Post :Go to tne previous Post
Next Post:Go to tne Next Post

No comments:

Post a Comment