Mysql /
AlterDatabaseALTER DATABASE allows you to change the overall characteristics of a database. These characteristics are stored in the `db.opt' file in the database directory. To use ALTER DATABASE, you need the ALTER privilege on the database. ALTER DATABASE companies CHARACTER SET latin5 COLLATE latin5_turkish_ci; ALTER DATABASE companies DEFAULT CHARACTER SET latin5 DEFAULT COLLATE latin5_turkish_ci; |