So far in the earlier blogs i have discussed various ways to create table. In this blog I will Summarise what all we have learnt in the previous sessions about Tables.
We will learn more about data integrity, normalisation forms of database, Keys, indexes,stored procedures , triggers and many more in the comings sessions.
Keep watching this space for more tips and tricks in SQL Server.
- Tables are the Building blocks of any database.
- Data ( any piece of information) in SQL Server or in any other database will be stored in tables.
- Tables are composed of rows and columns.Data in the table is stored in rows and columns. Each Row and Column in table holds specific information.
- Command used to create table is : CREATE TABLE < Table Name> ( Columns...)
- Table creation is a DML Command.
We will learn more about data integrity, normalisation forms of database, Keys, indexes,stored procedures , triggers and many more in the comings sessions.
Keep watching this space for more tips and tricks in SQL Server.