需要编写 SQL 查询从 Oracle 数据库获取数据

发布于 2024-10-19 00:17:00 字数 463 浏览 1 评论 0原文

可能的重复:
需要编写 SQL 查询从 Oracle 数据库获取数据

我需要编写一个 SQL 查询,它可以从一个表 A 中获取数据。

Senario - 让我们假设表 A 只有两列 C1 和 C2。 C1 有 row_id,C2 有类似“Site=google;site=gmail;yahoo”的

值 要求 - 需要编写一个查询,可以从表 A 的 C1 列中获取所有 row_id,但 C2 列的值应为“yahoo” 。意味着如果 C2 列的任何值中存在以“Site=”开头的内容,则不应在数据获取中显示它。

Possible Duplicate:
Need to write a SQL query to fetch data from a Oracle database

I need to write a SQL query which can fetch a data from one table A.

Senario - Lets take table A has only two column C1 and C2. C1 has row_id's and C2 has vaues like "Site=google;site=gmail;yahoo"

Requirment - Need to write a query which can fetch all the row_id from column C1 of table A but the value should come for column C2 as "yahoo". Means if anything starts with "Site=" in any value of C2 column then it should not been shown in the data fetch.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美不过初阳 2024-10-26 00:17:00

尝试

select
   *
from
   tableA
where 
   c2 not like 'site=%'

Try

select
   *
from
   tableA
where 
   c2 not like 'site=%'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文