Click here to Skip to main content
15,908,020 members

Comments by Oviya Sivakumar (Top 9 by date)

Oviya Sivakumar 11-Mar-20 3:48am View    
Deleted
Even when i give a compiled css (which is given below )it doesnot makes any changes in the effects,when i click the button the action is not performed


Oviya Sivakumar 2-Jan-20 0:44am View    
it works thank you
Oviya Sivakumar 30-Dec-19 6:01am View    
i had tried
select e.first_name,e.last_name,format(e.hire_date,'%M %d %y') as 'Hire date' from employees e;

it shows
Truncated incorrect INTEGER value: '%M %d %y'
Oviya Sivakumar 30-Dec-19 5:47am View    
when i tried the following

select concat(e.first_name," ",e.last_name)as 'employee name',format(s.salary*1.15,'C2') as 'No.Of Dollors'
from employees e
join salaries s
on e.emp_no=s.emp_no group by e.emp_no,s.emp_no;
it shows
Truncated incorrect INTEGER value: 'C2'
Oviya Sivakumar 30-Dec-19 5:45am View    
Deleted
if i use
select concat(e.first_name," ",e.last_name)as 'employee name',format(s.salary*1.15,'C2') as 'No.Of Dollors'
from employees e
join salaries s
on e.emp_no=s.emp_no group by e.emp_no,s.emp_no;

though throws an error Truncated incorrect INTEGER value: 'C2'