How to INSERT VALUES INTO table in SQL

A Database is simply a mess of interconnected Data-tables where you store inter-related data in order to make some descriptive information. In a previous post, I discussed how you can create a Data-table in SQL with examples, just make sure you have read that post before reading this. After a Data-table is created in your…… Continue reading How to INSERT VALUES INTO table in SQL

how to CREATE a simple table with the Constraints in SQL

Data tables are the most basic building blocks even of a large database. To query a particular data in a table we use SQL(Structured Query Language), and also those tables can be created by using SQL. In this post, you will learn how to create a simple Table in SQL. Just suppose you are responsible…… Continue reading how to CREATE a simple table with the Constraints in SQL