0:02 [Music] 0:12 hello friends welcome back to our 0:13 channel so in today's session we'll go 0:16 with a one command sql command in dbms 0:20 that is a create command 0:26 so create command in sql 0:28 so first of all we'll start with the dm 0:31 ddl command so d d l commands so ddl 0:36 commands we have discussed about these 0:38 things in the previous sessions which is 0:40 nothing but a definition 0:42 which gives the definition right so 0:45 one is a create 0:49 drop 0:51 truncate 0:53 etc etc all these will be the 0:55 data definition language commands so in 0:57 that we will see the create command so 0:59 how what is the syntax for create 1:01 command so in order to use this sql 1:05 commands 1:07 sql commands 1:08 we require one dbms tool 1:12 one dbms2 1:14 so we will select 1:17 mysql as a 1:19 dbms tool to execute the queries 1:22 so why because i mean why to select this 1:25 mysql means it's a open source 1:28 right so we can also select the oracle 1:32 or sql server 1:35 etc right so i will 1:37 choose this mysql as a dbms tool to 1:41 execute the sql queries 1:44 right so how to download this mysql and 1:46 how to install this mysql in our system 1:49 i have recorded the session and i will 1:51 post the 1:52 link in the description section you just 1:54 follow that and you can install download 1:56 and install the mysql 1:57 and then you can execute these queries 2:00 now 2:01 so by if you want to execute this sql 2:04 command so first of all we have to 2:06 create the database the first step we 2:09 need to create a database 2:13 so inside this database 2:15 we have to create 2:17 tables 2:18 we have to create 2:20 tables 2:21 right so all these tables will be stored 2:24 in this particular database 2:26 okay and 2:28 this 2:29 dbms tool this mysql will be having a 2:32 lot of databases 2:36 and inside this table databases will be 2:38 having lot of tables 2:40 inside the databases will be having a 2:42 lot of tables so first we have to create 2:44 a database and then we have to create 2:45 the table into this particular database 2:48 now first of all let us see the syntax 2:50 for creating the database 2:52 okay so here uh mysql we have chosen the 2:56 dbms tool as a mysql it will comes under 2:59 the two different variations one is a 3:01 gui graphical user interface in the 3:04 command line interface 3:06 so what's the difference what is the 3:08 difference so here everything all the 3:11 queries you need not write the queries 3:12 you can simply use a 3:14 selections okay mouse selections and 3:16 mouse moves to execute the queries so 3:19 the query will be automatically 3:20 generated right but here in the command 3:22 line you have to write down the query so 3:25 we will use this command line because we 3:27 have to practice the sql commands by 3:30 writing the queries so that's why we'll 3:32 go with the command line i will show 3:33 everything in the system don't worry 3:34 about that 3:35 so first of all let us see how to create 3:38 a database 3:40 how to create a database so if you log 3:43 into the mysql command line you will get 3:45 a sql prompt 3:47 you will get sql prompt and here you 3:49 need to write down the queries so in 3:51 order to create the database 3:54 create database 3:59 so the syntax is 4:01 create 4:04 database 4:06 followed by 4:10 database name so whatever the name you 4:13 you are going to give so that will be 4:15 given here right database name so one 4:18 database will be created in my in in 4:20 this particular mysql with a given name 4:23 with a given name and one thing just 4:25 remember every query will be terminated 4:28 with a semicolon so that's the most 4:30 important thing 4:32 every query 4:36 so which we have you are going to write 4:38 in this sql prompt 4:39 will be terminated 4:47 using 4:50 semicolon using semicolon so after end 4:53 of the query you have to place the 4:55 semicolon so if you are not placing the 4:57 semicolon if you press enter 4:59 automatically the query will be 5:00 continued with the next line so here the 5:03 query can be written in a multiple lines 5:05 so the query is not restricted to write 5:07 in a single line so the query can be 5:09 written in a multiple line so unless the 5:11 user gives the semicolon the query will 5:13 be keep on going with the new lines 5:17 so once you give the semicolon that 5:19 shows the end of the query so then the 5:22 query will be executed so i will show 5:24 everything in the 5:26 command line of mysql okay so the syntax 5:30 for creating the database is create a 5:32 database database name and semicolon so 5:35 if you want to check how many databases 5:37 and what are the databases available in 5:38 this particular 5:40 mysql the command 5:44 so the next one is displaying 5:50 databases 5:53 it 5:55 mysql 5:58 so that is the command is 6:01 show 6:05 databases 6:08 show 6:09 databases so automatically it will give 6:12 a table of 6:13 databases 6:15 so it will give a table of databases 6:18 so once you execute this one it will 6:20 give that this one 6:22 okay now 6:24 we have created a database and 6:26 we have seen whether the database has 6:28 been created in the mysql or not so if 6:31 if the database was created here so that 6:33 will be available in this particular 6:34 list 6:36 right so once it was done our next step 6:38 is we have to create a table 6:40 so in order to create a table that table 6:43 should be created in a particular 6:44 database so first we have to enter into 6:47 the database and in that particular 6:49 database we have to write on the 6:51 tables i mean we have to create the 6:53 tables and we can execute the queries so 6:56 how to 6:57 enter into that particular database how 6:59 to enter into particular database so 7:04 see i will show you 7:06 so it will show the result here with a 7:08 list of databases 7:10 so 7:12 entering 7:15 into database 7:19 sorry 7:22 entering into the database the query is 7:25 sql 7:26 use 7:28 database name 7:34 use database 7:36 name so automatically we will be 7:38 entering into that particular database 7:40 now after this one we'll get a command 7:42 that database changed 7:44 we'll get the statement 7:46 simply here the database 7:50 changed 7:52 so if you got this statement that 7:53 implies we are entering into that 7:55 particular database and we are going to 7:56 use this particular database so in that 7:59 particular database we are going to 8:00 write the tables so whatever the tables 8:02 we are creating that will be saved in 8:05 this particular database 8:06 okay whatever the database given here 8:09 so 8:10 once you enter into this particular 8:12 database now we have to create a table 8:15 so whatever the tables we are going to 8:17 create everything will be in this 8:18 particular database name so 8:21 next step how to create a table 8:26 how to create a table 8:34 creating 8:37 table 8:39 so as i have said that the query can be 8:41 written in 8:43 a multiple 8:44 rows okay multiple lines 8:47 so 8:49 sql 8:50 the prompt and here we give the command 8:53 create 8:55 table 8:58 give the table name 8:59 table name 9:01 and open the parenthesis and in the 9:03 table we know that there will be columns 9:06 and rows so we have to give the columns 9:09 that we call it as an attributes so we 9:11 have to define the attributes which 9:13 should be available in this particular 9:15 table 9:16 with the corresponding data types so 9:18 based upon the value we are storing into 9:20 the attribute we have to define the 9:22 particular attribute with the 9:23 corresponding data type so in the 9:25 previous session we have seen the 9:26 different data types right so here 9:29 see 9:30 if you press enter automatically you 9:33 will get one more line 9:35 okay and because here we have not given 9:38 semicolon if you're given semicolon that 9:40 will be treated as a end of the query so 9:42 if you are not giving any semicolon and 9:43 press enter automatically it will go 9:45 with the new line and here you can 9:47 define attribute 9:51 attribute one and corresponding data 9:54 type 9:55 data type comma and again if you press 9:58 enter again it will move with the next 10:00 line 10:02 attribute 10:05 to 10:06 and 10:07 data type 10:10 and if you press enter third line 10:13 so it will be keep on moving unless that 10:16 user enters the semicolon 10:20 data type okay and so on 10:24 so on 10:25 and finally if you use a closed 10:27 parenthesis and 10:29 you use a semicolon then the table will 10:32 be created with the following attributes 10:35 a table will be created with the 10:37 following attributes 10:38 right 10:40 so hope you understood this one so i 10:42 will explain this 10:44 table creation also in the mysql command 10:47 line okay we'll create one table with a 10:49 different attributes and here 10:50 one more thing 10:52 so we can create a table without the 10:54 constraints and with constraints so we 10:55 can give the constraints for this 10:57 particular attributes 10:59 okay in order to avoid the redundancy if 11:01 you 11:02 in order to 11:03 link one table with another table in 11:05 order to give the default values okay so 11:08 there are many constraints so those 11:11 constraints should be given for these 11:12 attributes while creating a table so we 11:15 have not discussed about these 11:16 constraints so far so in this session i 11:19 am just showing how to create a table 11:22 without any constraints here we are not 11:24 giving any constraints this is a simple 11:26 creation of a table okay in the next 11:29 sessions i will explain you about the 11:31 constraints what are the different 11:32 constraints we can give for the 11:33 attributes and then we will see one more 11:36 time how to create a table with a 11:38 particular constraints 11:40 okay i will demonstrate everything with 11:42 an example right so this is how we can 11:45 create the table 11:47 in inside the database 11:49 okay inside a database now 11:52 if you want to 11:54 look at what are the tables available in 11:56 the database 11:57 if you want to look at what are the 11:59 tables available in the database so i 12:01 will execute the same query in the mysql 12:03 command line don't worry so i will show 12:05 everything in a practical 12:07 so 12:08 displaying 12:14 tables 12:17 in database 12:20 in database 12:22 so the query is similar to our databases 12:25 here also we can use 12:27 show 12:28 tables 12:30 so show tables 12:33 short tables 12:34 okay show tables will give a list of 12:38 tables which are available in that 12:40 particular database 12:42 in that particular database it will give 12:44 a complete list okay the queries index 12:47 will be small different there will be a 12:48 light difference with the different dbms 12:50 tools so if you are using some oracle 12:53 if you are using some oracle 12:55 the syntax will be 12:57 select 12:58 star 13:00 from 13:01 tab 13:02 so this is the syntax to 13:04 list out all the tables of particular 13:06 database okay the syntax would be a 13:09 light difference slight difference 13:12 so we are using a mysql in this mysql 13:16 so this is a syntax to create or to list 13:19 out all the tables available in the 13:21 database 13:23 so 13:24 let us see everything the execution of 13:26 uh 13:27 each and every syntax that means how to 13:30 create a table how to create a database 13:32 how to use the database how to show the 13:34 database table databases and how to show 13:37 the tables in the mysql command line 13:39 prompt 13:40 so let us move on to the system and let 13:42 us see the execution of all these 13:44 queries so let's move on to the s mysql 13:49 hello friends so just now we have seen 13:51 the create command in sql right so now 13:56 we'll see the implementation part so how 13:58 we can 13:58 execute the query create so in this 14:02 session we have seen how to create a 14:04 database and how to create a table 14:06 without constraints okay so after this 14:09 session from the next session we'll see 14:12 how to create a table with the 14:13 constraint right so let us see 14:16 first uh here i am using 14:19 the dbms tool mysql to execute the 14:21 queries 14:22 right so in the previous sessions 14:25 already have 14:26 recorded how to download and install the 14:28 mysql so i will post the link in the 14:31 description section so you can just 14:33 follow that and you can install the 14:34 mysql so i have chosen this mysql you 14:37 can use oracle sql server etc etc so i 14:41 why i have preferred this mysql means 14:43 it's an open source so you did not pay 14:46 anything so it will be available in the 14:48 internet so you can download and install 14:50 and you can execute all the queries and 14:52 mysql will be coming in two interfaces i 14:55 mean two different interfaces one is a 14:57 graphical user in the command line so we 14:59 will execute the queries in the command 15:01 line because if you use the 15:04 user interface graphical user interface 15:06 so you did not execute the query 15:08 directly by using the most moves and 15:09 clicks you can directly create a table 15:12 and you can execute the queries but you 15:13 have if you want to learn the queries 15:16 sql queries so if my suggestion is work 15:19 with the command line interface so you 15:21 will be getting these two icons you can 15:23 see mysql workbench and mysql command 15:25 line so 15:27 here you will be getting mysql folder 15:31 so i will show you 15:33 see 15:34 mysql folder in this mysql you will be 15:36 finding all these options so one is a 15:38 command line and mysql workbench so user 15:41 mysql command line so i have already 15:45 taken so it will prompt for the password 15:47 just give the password 15:48 so 15:49 here we'll get the prompt 15:51 okay so the first one if you want to 15:54 clear the screen use the command system 15:56 cls so it will clear the screen 15:59 now 16:00 as we have discussed it just now 16:02 before creating the tables first we have 16:05 to create a database 16:06 so if you want to create a database 16:10 in mysql simply use create 16:13 a database name 16:15 okay create 16:16 database 16:18 database name so i'll give the database 16:20 name as youtube 16:22 okay semicolon it will end the query so 16:25 execute you can get the you will getting 16:28 the command like a query okay one row 16:30 affected now if you want to 16:33 uh look at the databases which are 16:35 available in our mysql 16:37 use the command use 16:39 sir show 16:41 database 16:43 databases 16:45 so these are all the databases available 16:47 in 16:48 mysql okay these are all the database 16:51 available in mysql 16:52 so 16:53 here we have created the database 16:56 youtube so you can find the name here 16:58 here itself 16:59 okay and also 17:02 now we have to create a table inside 17:05 this database so first of all we have to 17:08 select the database in which we want to 17:10 create a table and then we have to enter 17:12 into that particular database and then 17:15 there we have to create a table if you 17:17 want to enter into a particular database 17:19 which we want to select use a command 17:21 use the database name 17:23 so 17:25 so you can you will get the statement 17:27 database changed now we are in the 17:29 youtube database now whatever the tables 17:31 we are going to create everything will 17:33 be saved in this particular youtube so 17:35 in order to 17:37 get the details of the tables available 17:39 in this particular database use the 17:40 command show 17:42 tables 17:43 so you can see empty set that means 17:44 there are no tables till now there are 17:46 no tables right so first we'll create a 17:49 table student okay without any 17:51 constraints so actually we have to 17:53 create a table with a multiple 17:54 constraints so we'll see what are the 17:56 constraints we can see in the next 17:58 session and again we will see the same 18:00 command that means how to create a table 18:02 using those constraints but now in this 18:05 session we'll see how to create a table 18:07 without the constraints so that 18:11 syntax is create table student 18:14 and you can give the query in a multiple 18:17 lines we can write the query in multiple 18:19 lines and here the semicolon is a 18:21 termination of a query and until the 18:24 user gives the semicolon the query will 18:26 be continuously keeps on moving so just 18:29 give enter give the attribute so what is 18:32 the first attribute student id and give 18:34 the corresponding data type what is the 18:36 student id data type that means the 18:38 value which holds the student id is an 18:41 integer so 18:42 declare this one with a integer 18:44 comma the second attribute is the 18:46 student name 18:47 the student name will be the character 18:49 so the data type can be where care and 18:51 do the maximum size of the name it 18:53 should accept so the student name can 18:56 have only the characters 30 characters 18:59 okay not more than 30 characters and the 19:01 third one student branch so which branch 19:04 he or she belongs to the student branch 19:07 is also 19:09 a character so where can offer some 20 19:12 the length of the branch should be not 19:14 more than 20 and the last one is a 19:16 student percentage which is of a real 19:17 number that is a float value 19:20 so float value and close the parenthesis 19:22 and use a semicolon so that the table 19:25 will be created so you can see the query 19:27 okay 0 rows affected 19:29 so a table has been created now now use 19:32 the command show tables to display all 19:35 the tables of this youtube database so 19:38 tables 19:40 see 19:40 there is a table in a youtube database 19:43 that is a student 19:45 so what are the records of a student so 19:48 this is an empty table okay empty table 19:51 so in order to use a in order to list 19:53 out all the records of a student table 19:55 so you have to use a command select star 19:57 from table name so it will display all 19:59 the 20:01 sorry 20:02 select star from student okay table name 20:06 so it's an empty set because we have not 20:08 inserted any rows or records inside the 20:10 table just we have created a table 20:12 now 20:13 if you want to know about the structure 20:15 of this particular table which we call 20:17 it as a schema 20:19 schema of the table right so what are 20:21 the attributes and what is the data 20:22 types given for those attributes use the 20:24 command called the description dsc 20:26 describe 20:28 describe table name so that it will give 20:31 all the field field names okay all the 20:33 attribute names those types data types 20:37 and the constraints what are the 20:38 different constraints given for those 20:40 attributes so actually here we have not 20:42 given any constraint so null value is by 20:45 default so everything it will accept a 20:46 null value and the default value is a 20:49 null value for all the attributes so we 20:51 can set all these things while creating 20:54 a table okay we can set all the 20:56 constraints given for the attributes 20:59 while creating a table so 21:02 we have created a table without any 21:04 constraints without any constraints we 21:06 have created a table 21:07 right so this is how we can create a 21:11 table and a database the create command 21:14 the data definition language command is 21:16 a create the first ddl command is a 21:18 create so for that create we have seen 21:21 the syntax how to create a database and 21:23 how to create that table okay and once 21:26 again i am repeating creating a table 21:28 without constraints without giving the 21:31 constraints but we have to create the 21:33 table by using the constraints so that 21:35 the redundancy will be avoided so that 21:38 will discuss in the further sessions 21:40 right so hope you understood this simple 21:43 create command 21:44 so 21:45 uh if you are having any doubts 21:47 regarding this one feel free to post 21:48 your doubts in the comment section 21:49 definitely i'll try to clarify all your 21:51 doubts and if you're real enjoyed my 21:52 session like my session share my session 21:54 with your friends and don't forget to 21:55 subscribe to our channel thanks for 21:57 watching thank you very much