Hello everybody. Today we will directly start creating a table in the Customers database created yesterday. Open the SQL Server Management Studio and click on New Query (see Figure1 ). You can see a blank screen. This is the place where we write queries to communicate with the database. Figure1 : Click on New Query To insert a Customer record, we need a table made up of rows and columns to occupy the record. Let’s start creating a table by writing the following query in the editor (see Figure2 ), Figure2 : Creating a table CustomerDetails 1. use [Customers] 2. --Creating a table to store customer records 3. CREATE TABLE CustomerDetails 4. ( 5. Cid int , 6. Cname varchar ( 15 ), 7. Address varchar ( 50 ), 8. City varchar ( 15 ), 9. Country varchar ( 15 ) 10. ) We can run the query by highlighting the code and pressing the “Execute” or “F5” button. The code is numbered for a line by line explanation. 1. Mentioning the databas...