0
mysql> show tables;
+---------------------+
| Tables_in_cpsc408db |
+---------------------+
| Product |
| laptop |
| pc |
| printer |
+---------------------+
4 rows in set (0.00 sec)
mysql> create procedure hello()
-> begin
-> select * from product;
ERROR 1064 (42000): 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 '' at line 3
mysql>
我不確定是什麼原因導致了這個語法錯誤,至今還沒有成功解決它。任何幫助將非常感激。基本的mySql程序的問題
感謝這正是我所需要的,我會查看該教程。 – bobbyzzz