Skip to main content

Openings for PHP, MySQL, Javascript at Blu Technologies

Company        Blu Technologies

Website          www.blutechnologies.com

Eligibility        Any Graduation

Experience     1+ Year


Location         Chennai

Blu Technologies

Job Role: PHP Developers

Job Summary :

Candidate Profile:

1. Experience in working with web applications

2. Strong programming experience with solid PHP design, coding and testing.

3. Knowledge of MySQL and Javascript

Position: PHP Developers

Exp: 1+ yrs

Location: Siruseri I.T Park Chennai.

Qualification: Any Graduation

Contact Us:

Contact Person:Rajkamal

Forward Your Resume: hr@blutechmail.com

Contact Numbers: 044-67450450 / 868287 8787

Comments

Popular Posts

How to find out Max Salary from each department

You can find maximum salary for each department by grouping all records by DeptId and then using MAX() function to calculate maximum salary in each group or each department. SQL Query: SELECT DeptID, MAX(Salary) FROM Employee  GROUP BY DeptID. This questions become more interesting if Interviewer will ask you to print department name instead of department id, in that case you need to join Employee table with Department using foreign key DeptID, make sure you do LEFT or RIGHT OUTER JOIN to include departments without any employee as well.  Here is the query