我在MySQL中关注表,
MyData
------ //header data separator
test
test_2
--- //row separator
test
t
iuey
--- //row separator
yi
t
我想使用SQL查询检索第一行,即 test,test,yi 。基本上我想用\n
分割每一行,而不使用存储过程或任何用户定义的函数。我试过跟随,但它没有奏效。
select substr(MyData, 0, length('test ')) from MyTable