سلام استاد اوند عزیز
مو به مو چیزی ک گفتین برای ساخت جدول رو نوشتم ولی با ارور زیر مواجه میشم :
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 ...
مشکل چی هست؟
سلام.
کدی که نوشتید رو بگذارید.
اینجا میزارم کد رو بالا خیلی مشخص نیست
create table articles ( id int, title varchar(512), content text, create_at datatime );
باید بنویسید datetime که اشتباهاً نوشتید datatime:
create table articles ( id int, title varchar(512), content text, create_at datetime );