A Service of Compare Infobase Limited

DilKholKeBol is an extension of your expression. We want you to say whichever way, Talk, Type, Shoot, Capture just Dil Khol Ke Bol.

Email/Username
Password
 Remember Me
New User Forgot Password?
Search
Person Blog  
What is happening...

The SQL CHECK CONSTRAINT ensures that a value for a specific column or columns have satisfied a specified condition. The job of CHECK constraint is, to limit the values for a column of a table. .... Read Full Post On Blogs
W3resource   at  03:17:50 PM 6th February 2012  QUICK COMMENT|COMMENTS(0)


The SQL FOREIGN KEY CONSTRAINT is used to ensure the referential integrity of the data in one table to match values in another table. The FOREIGN KEY CONSTRAINT is a column or list of columns which points to the PRIMARY KEY of another table. .... Read Full Post On Blogs
W3resource   at  03:15:36 PM 6th February 2012  QUICK COMMENT|COMMENTS(0)


The SQL PRIMARY KEY is a column in a table which must contain a unique value which can be used to identify each and every row of a table uniquely. However, SQL supports primary keys directly with the PRIMARY KEY constraint. .... Read Full Post On Blogs
W3resource   at  03:14:09 PM 6th February 2012  QUICK COMMENT|COMMENTS(0)


The SQL UNIQUE constraint is used to ensure that the each rows for a column have different value. In this page we are going to discuss, how the SQL UNIQUE CONSTRAINT works if it is used at the end of the CREATE TABLE statement instead of using the UNIQUE CONSTRAINT.... Read Full Post On Blogs
W3resource   at  03:12:40 PM 6th February 2012  QUICK COMMENT|COMMENTS(0)


The SQL CONSTRAINTS are an integrity which defines some conditions that restricts the column to remain true while inserting or updating or deleting data in the column. Constraints can be specified when the table created first with CREATE TABLE statement or at the time of modification of structure of an.... Read Full Post On Blogs
W3resource   at  03:11:10 PM 6th February 2012  QUICK COMMENT|COMMENTS(0)


Tables are a basic unit of organization and storage of data in SQL. Each table has an name such as a author, book_mast, purchase or orders. A table is similar to a file in a non-database system. .... Read Full Post On Blogs
W3resource   at  03:09:25 PM 6th February 2012  QUICK COMMENT|COMMENTS(0)


In Sql, the create database statement is used to create a database. The database names are case sensitive in Unix but this restriction does not apply in Windows. This is also true for table names. The best practice is to use same letter case while creating database as well as tables..... Read Full Post On Blogs
W3resource   at  11:56:52 AM 4th February 2012  QUICK COMMENT|COMMENTS(0)


The FULL OUTER JOIN will return all rows, as long as there's matching data in one of the tables. It includes all the rows from both the participating tables and does not select either the LEFT or RIGHT table from the JOIN key word. .... Read Full Post On Blogs
W3resource   at  11:55:16 AM 4th February 2012  QUICK COMMENT|COMMENTS(0)


The SQL Right Join or simply RIGHT JOIN return all rows from the first table listed after the JOIN keyword , no matter if they have matches in the left table of the JOIN keyword. This means that if the ON clause matches no records in the left table of JOIN.... Read Full Post On Blogs
W3resource   at  11:53:52 AM 4th February 2012  QUICK COMMENT|COMMENTS(0)


The SQL Left Join or simply LEFT JOIN return all rows from the first table listed after the FROM clause or left of JOIN keyword , no matter if they have matches in the right table of the JOIN keyword. This means that if the ON clause matches no records in.... Read Full Post On Blogs
W3resource   at  11:51:57 AM 4th February 2012  QUICK COMMENT|COMMENTS(0)