Jumat, 10 Mei 2013 database interview questions mysql SQL and database tutorial examples Difference between LEFT and RIGHT OUTER Joins in SQL - MySQL Join example There are two kinds of OUTER joins in SQL, LEFT OUTER join and RIGHT OUTER join. Main difference between RIGHT OUTER join and LEFT O...
Kamis, 09 Mei 2013 database SQL and database tutorial examples Sybase and SQL Server Migrating SQL Query from Oracle to SQL Server 2008 or Sybase Oracle and Microsoft SQL Server are very different than each other and if you are migrating SQL queries or database, tables from Oracle 11g ...
Rabu, 02 Januari 2013 core java database JDBC programming JDBC Batch INSERT and UPDATE example in Java with PreparedStatement JDBC API in Java allows program to batch insert and update data into database, which tends to provide better performance by simple virtue of...
Senin, 31 Desember 2012 database oracle database programming SQL Top 10 Oracle Interview Question and Answer - Database and SQL These are some interview question and answer asked during my recent interview. Oracle interview questions are very important during any prog...
Sabtu, 29 Desember 2012 database mysql SQL Sybase and SQL Server Difference between Primary key vs Foreign key in table – SQL database tutorial Main difference between Primary key and Foreign key in a table is that, it’s the same column which behaves as primary key in parent table an...
Kamis, 27 Desember 2012 database mysql SQL What is Referential Integrity in Database or SQL - MySQL Example Tutorial Referential Integrity is set of constraints applied to foreign key which prevents entering a row in child table (where you have foreign key)...
07.00 core java database programming SQL Oracle Pagination SQL query example for Java programmer Many time we need SQL query which return data page by page i.e. 30 or 40 records at a time, which can be specified as page size. In fact Dat...
Rabu, 26 Desember 2012 database mysql SQL Sybase and SQL Server SQL query to add, modify and drop column in table with default value NOT NULL constraint – MySQL database How to add column in existing table with default value is another popular SQL interview question asked for Junior level programming job int...
Selasa, 25 Desember 2012 database mysql SQL Sybase and SQL Server How to create auto incremented identity column in SQL Server, MySQL, Sybase and Oracle ? Automatic incremented ID, Sequence or Identity columns are those columns in any table whose value is automatically incremented by database b...
Senin, 24 Desember 2012 database SQL Sybase and SQL Server Sybase and SQL Server PATINDEX CHARINDEX Example to split String in Stored procedure Some time we need to split a long comma separated String in Stored procedure e.g. Sybase or SQL Server stored procedures. Its quite common...
Sabtu, 22 Desember 2012 database interview questions mysql SQL How to find second highest or maximum salary of Employee in SQL - Interview question How to find second highest or second maximum salary of an Employee is one of the most frequently asked SQL interview question similar to fin...
Kamis, 20 Desember 2012 database mysql programming SQL SQL query to copy, duplicate or backup table in MySQL, Oracle and PostgreSQL database Many times we need to create backup or copy of tables in database like MySQL, Oracle or PostgreSQL while modifying table schema like adding ...
Jumat, 14 Desember 2012 database mysql programming SQL How to find duplicate records in a table on database - SQL tips How to find duplicate records in table is a popular SQL interview question which has been asked as many times as difference between truncate...
Kamis, 22 November 2012 database mysql programming SQL How to join three tables in SQL query – MySQL Example Three table JOIN Example SQL Joining three tables in single SQL query can be very tricky if you are not good with concept of SQL Join. SQL J...
Sabtu, 27 Oktober 2012 database mysql programming SQL SQL Query to find all table names on database in MySQL and SQL Server Examples How do you find names of all tables in a database is a recent SQL interview questions asked to one of my friend. There are many ways to fi...
Sabtu, 07 Juli 2012 database mysql SubQuery Example in SQL – Correlated vs Noncorrelated SubQuery in SQL is a query inside another query. Some time to get a particular information from database you may need to fire two separate ...
Kamis, 24 Mei 2012 core java database Different types of JDBC drivers in Java - Quick overview How many types of JDBC drivers in Java is a classical JDBC interview question , though I have not see this question recently but it was ver...
Jumat, 25 November 2011 database mysql Database Transaction Tutorial in SQL with Example for Beginners Database transaction is an important concept to understand while working in database and SQL. Transaction in database is required to protec...
Rabu, 19 Oktober 2011 database interview questions mysql How to use truncate and delete command in SQL >> Tutorial and Example Delete and truncate command in SQL Truncate and delete in SQL are two commands which is used to remove or delete data from table. Though qu...
Jumat, 14 Oktober 2011 database mysql 10 Example Queries of SQL Select Command Select command in SQL is one of the most powerful and heavily used commands. This is I guess the first command any one learn in SQL even be...