PG中:select * from student where id=1 截取 from 和where中间的字符串
时间: 2024-05-15 09:09:36 浏览: 92
截取字符串
在PG中,可以使用子字符串函数`substring`来截取字符串。对于你提供的SQL语句`select * from student where id=1`,你可以使用以下方式截取`from`和`where`之间的字符串:
```sql
SELECT substring('select * from student where id=1' FROM 'from (.*) where') AS result;
```
这将返回结果为`student`,即`from`和`where`之间的字符串。
阅读全文