需要编写 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
Try