我正在尝试编写一个SQL语句,该语句在一列中显示一个表中的国家/地区名称,并列出另一列中每个名称中的字母数。我读了LEN
函数并尝试使用它,但是我收到一个错误,指出它是一个无效的标识符。我是否正确使用它,或者我应该使用更合适的SQL命令?
SELECT
COUNTRY_NAME, LEN(COUNTRY_NAME)
FROM
COUNTRIES;
答案 0 :(得分:1)
不同的数据库具有不同的功能名称。虽然经常使用<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<div class="container">
<div class="menu">
<input type='button' value='Start/Restart' id='start' class='btn'>
<input type='button' value='Strict' id='strict' class='btn'>
</div>
<div class='board'>
<div class='display'><p id='disp'></p></div>
<br>
<table>
<tbody>
<tr>
<td class='cubes' id='green'></td>
<td class='cubes' id='red'></td>
</tr>
<tr>
<td class='cubes' id='yellow'></td>
<td class='cubes' id='blue'></td>
</tr>
</tbody>
</table>
</div>
</div>
,但len()
也常用。你可以尝试:
length()
您正在学习数据库。你应该找出你正在使用的数据库以及如何使用它的文档。