摘要:
ORA 01791错误提示的是“ORA-01791: 不是 SELECTed 表达式”: 原因:sql中了用了DISTINCT关键字去重,但是order by后面跟的字段并没有出现在查询的列中,什么意思?看例子 例子: 错误:SELECT DISTINCT a.name,a.code from a 阅读全文
摘要:
Given a string array words, find the maximum value of length(word[i]) * length(word[j]) where the two words do not share common letters. You may assum 阅读全文