SQL:はお金のタイプはSQLで私は、このエラーを与えているとテーブルの作成:ERROR 1064(42000)
create table rentals
(
RentalID INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
CustomerID INT UNSIGNED NOT NULL,
VideoID INT UNSIGNED NOT NULL,
DateOfRental DATE NOT NULL,
RentalCost MONEY NULL
);
エラー:
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 'MONEY NULL)' at line 7
mysqlに 'MONEY'データ型があったという考え方はどこですか? – csmckelvey