摘要:
启动PL/SQL Developer 报字符编码不一致错误Database character set (AL32UTF8) and Client character set (ZHS16GBK) are different.Character set conversion may cause un... 阅读全文
摘要:
SQL Server 中大小写区分的处理。默认情况下,SQL Server 里面是不区分大小写的:E:\>sqlcmd -S "localhost\SQLEXPRESS"1> use test2> go已将数据库上下文更改为 'Test'。-- 建立一个 tab 的测试表, 表名称为全部小写1> CREATE TABLE [tab] ( id int )2> go1> select * from tab2> goid-----------(0 行受影响)1> select * from Tab2> goi 阅读全文