content top

PHP Developer CodeIgniter MVC Framework

Everything You Need to Get Started With CodeIgniter Tutorial Details Difficulty: Beginner Technology: PHP CodeIgniter is a web application framework for PHP. It enables developers to build web applications faster, and it offers many helpful code libraries and helpers which speed up tedious tasks in PHP. CodeIgniter is based on a modular design; meaning that you can implement specific libraries at your discretion – which adds to...

Read More

Querying data by using SQL UNION

SQL UNION allows you to combine two or more result sets from select statements into a single result set. The usage of using SQL UNION is as follows: SELECT statement UNION [DISTINCT | ALL] SELECT statement UNION [DISTINCT | ALL] … The column list of each individual SELECT statement must have the same data type. By default the UNION removes all duplicated rows from the result set even if you don’t explicit using DISTINCT after the UNION...

Read More
content top