1。英文在程序录入时显然要快一些,方便一些。
2。在英文版的 *** 作系统下,运行带有中文的字段的库记录时,有时会出错乱码。也就是说可移植性中文版要差一些。
3。在都是中文的 *** 作系统平台下,三字节和二字节的存储方式有时也将会影响我们的程序正常平行。
所以我觉得英文的字段名要比中文的字段名好一些。
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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)