0
Table for SQL code
How do I create a table using SQL Codes
1 Answer
+ 2
this code is for mysql/mariadb, but sql queries are "really talking":
CREATE TABLE [IF NOT EXISTS] table_name (....)
you have to modify this for your need....
How do I create a table using SQL Codes