发布网友 发布时间:2022-04-23 20:32
共2个回答
热心网友 时间:2022-04-08 22:04
1、创建测试表,
create table test_zw(id number, v_date date);
2、插入测试数据
insert into test_zw values(1,20190101);
insert into test_zw values(2,20190102);
insert into test_zw values(3,20190103);
insert into test_zw values(4,20190104);
3、查询表中记录,select t.* from test_zw t;
4、编写sql,将v_date字段翻译为中文'日期',select t.*, V_DATE AS '日期' from test_zw t;
热心网友 时间:2022-04-08 23:22
mysql支持中文表名和字段名,前提是设置好支持中文的字符集,例如 gb2312
例如:
-- 创建数据库时指定字符集 gb2312
create database test1
DEFAULT CHARACTER SET gb2312;
-- 转到刚创建的数据库
use test1;
-- 创建中文数据表即中文字段
create table 学生表(
id int auto_increment primary key,
sid char(10) unique not null,
姓名 varchar(50) not null,
性别 bit,
生日 date);