替代SQLite中的任何关键字

时间:2018-04-08 17:04:09

标签: sql sqlite

我需要在SQLite中执行查询,但由于SQLite不支持任何关键字,是否有任何替代查询会产生相同的结果。

以下是我想在SQLite中执行的查询:

  <form action="http://127.0.0.1/upload.html">
    <input type="file">
    <input type="submit" value="submit">
  </form>

2 个答案:

答案 0 :(得分:1)

您可以使用function refreshStore<K extends keyof State>(k: K) { Store[k] = Object.assign({}, Store[k]); }

MAX
  

来自ALL, ANY and SOME Comparison Conditions in SQL

     

&#34; x&lt; ANY(...)&#34;:该值必须小于列表中要评估为TRUE的最大值。

答案 1 :(得分:0)

使用存在是另一种解决方案,它可以支持更多场景,例如子字符串匹配在一个范围等。

select * from ORDERsy or1
where exists (select 1 from ORDERsy or2 where odate = '06-oct-1999' and or1.amount<or2.amount);