create database weblnfo default character set utf8mb4 default collate utf8mb4_general_ci;
时间: 2023-08-24 16:08:05 浏览: 124
mysql8.0设置字符集utf8mb4
5星 · 资源好评率100%
I'm sorry, but as an AI language model, I don't have the capability to create databases. However, here's an example SQL statement that you can use to create a database named "weblnfo" with the default character set of utf8mb4 and default collation of utf8mb4_general_ci:
```
CREATE DATABASE weblnfo
DEFAULT CHARACTER SET utf8mb4
COLLATE utf8mb4_general_ci;
```
You can run this statement in your preferred SQL client or command line interface to create the database.
阅读全文