Pracuję z widokiem mysql i chcę użyć instrukcji IF ELSE w tym widoku. jego dając mi błąd jak tenmysql view if else problem
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'if(getUser()="") THEN]
select hie_code_1 from hs_hr_emp_level L,hs_hr_u' at line 7
To jest mój widok
drop view if exists vw_hs_hr_employee;
CREATE VIEW vw_hs_hr_employee as
select * from hs_hr_employee where
hie_code_1 in
(
BEGIN
if(getUser()="") THEN
select hie_code_1 from hs_hr_emp_level L
ELSE
select hie_code_1 from hs_hr_emp_level L,hs_hr_users U
where L.emp_number=U.emp_number
and L.emp_number=getUser()
and (U.def_level=1 or U.def_level=4)
END if
)
EDITED tutaj moja funkcja
CREATE FUNCTION `getUser`() RETURNS char(50) CHARSET latin1
RETURN @user
Jeśli ktoś może mi pomóc dzięki
AKTUALIZACJA zapytanie
CREATE VIEW vw_hs_hr_employee as
select * from hs_hr_employee where
CASE getUser()
WHEN ''
THEN
select hie_code_1 from hs_hr_emp_level L
END
hie_code_1 in (select hie_code_1 from hs_hr_emp_level L,hs_hr_users U where L.emp_number=U.emp_number and L.emp_number=getUser() and (U.def_level=1 or U.def_level=4) )
or
hie_code_3 in (select hie_code_3 from hs_hr_emp_level L,hs_hr_users U where L.emp_number=U.emp_number and L.emp_number=getUser() and U.def_level=2 )
or
hie_code_4 in (select hie_code_4 from hs_hr_emp_level L,hs_hr_users U where L.emp_number=U.emp_number and L.emp_number=getUser() and U.def_level=3)
błąd givinign syntax to use near 'select hie_code_1 from hs_hr_emp_level L END hie_code_1 in (select hie_code_' at line 6
Sporządzono
drop view if exists vw_hs_hr_employee;
CREATE VIEW vw_hs_hr_employee as
select * from hs_hr_employee e where CASE WHEN getUser()=''
THEN
e.emp_number is not null
ELSE
hie_code_1 in (select hie_code_1 from hs_hr_emp_level L,hs_hr_users U where L.emp_number=U.emp_number and L.emp_number=getUser() and (U.def_level=1 or U.def_level=4) )
or
hie_code_3 in (select hie_code_3 from hs_hr_emp_level L,hs_hr_users U where L.emp_number=U.emp_number and L.emp_number=getUser() and U.def_level=2 )
or
hie_code_4 in (select hie_code_4 from hs_hr_emp_level L,hs_hr_users U where L.emp_number=U.emp_number and L.emp_number=getUser() and U.def_level=3)
end
jest 'getUser () "powinno być [CURRENT_USER() lub USER()] (http://dev.mysql.com/doc/refman/5.0/en/information-functions.html#function_current-user)? –
pytanie zaktualizowane –
Ponadto, widok ma być normalną instrukcją SELECT, a te nie pozwalają na sterowanie przepływem bloków, tak jak robią to procedury przechowywane. Jako takie, będziesz chciał użyć [IF() lub CASE ... WHEN..END] (http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html) –