select left(songno,3) as songno from song  //截取前3位


select distinct right(left(songno,6),3) as Files from song order by Files asc    // 截取中间


select right(songno,6) as 歌曲编号 from song  //截取后3位


select left(songno,3) as 服务器编号 from song


select mapping from drivers


select left(songno,3) as songno,drivers.mapping from song left join drivers on drivers.driversid=song.songno

相关文章:

  • 2022-12-23
  • 2021-04-19
  • 2021-07-27
  • 2021-11-10
  • 2021-05-24
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
猜你喜欢
  • 2021-07-24
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案