Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have an error when I want to run in MySQL phpmyadmin this procedure.

  DELIMITER //
create or replace procedure proc_ex_3a(in v_adr varchar)
BEGIN
    select * from Furnizori WHERE v_adr LIKE '%8' order by v_adr;
END //
DELIMITER ;

The syntax should be fine, but this error occurs

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ') BEGIN select numef from Furnizori WHERE v_adr LIKE '%8' order by v_adr; ...' at line 1


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
421 views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...