Related Articles
Open Source Alternatives to Microsoft Office
Paying money for using Microsoft Office? Use Open source tools and get almost same features as Microsoft Office. 1. Open Office : Open Office is developed by Apache Foundation and is the best Open source Word processing, spread sheets, presentations and database. Very easy to use much like MS office. Open Office Works on Windows, […]
Unzip using 7zip on Linux Centos
7z x filename.zip extract all zip archives 7z x *.zip to unzip on specific location or folder 7z x filename.zip foldername 7z x *.zip foldername Install 7zip on Linux Centos yum install p7zip Install 7zip on Linux Ubuntu sudo apt-get install p7zip a to archive $ 7za a myfiles.7z myfiles/
MySQL Offset Limit Data Selections
MySQL provides a LIMIT clause that is used to specify the number of records to return. The LIMIT clause makes it easy to code multi page results or pagination with SQL, and is very useful on large tables. Assume we wish to select all records from 1 – 30 (inclusive) from a table called “Orders”. […]