直接用中文名称即可查询。
可按如下方法做测试:
1、创建表插入数据:
create table test(序号 int,
名称 varchar(10))
insert into test values (1,'张三')
insert into test values (2,'李四')
2、执行查询:
select * from test where 序号=1结果显示:
也就是说中文字段名在查询中可以直接引用。
虽然可以用中文字段或者表名,但确实不建议使用,用中文名,需要使用``分隔符。set names 'gb2312'
create table `中文表名`(`中文字段` int)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)