Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下查询:
SELECT * FROM student WHERE ssn LIKE '%321321%';
但它返回那些记录为 113213213215。我怎样才能改变它,所以它只返回随后只有 321321 的记录。
SELECT id from student WHERE locate('321321', ssn) > 0 should sort you, according to this. All the best...
SELECT id from student WHERE locate('321321', ssn) > 0
It's not a massive deal but would like consistency across browsers and the document would be easier read if it fills the box. In Chrome, increasing the 'width' only incre