Выбор одной строки в MySQL

Сначала сделайте строку со всеми своими возможными символами:

 $characters = 'abcdefghijklmnopqrstuvwxyz0123456789';

Вы могли также использовать диапазон () , чтобы сделать это более быстро.

Затем в цикле, выбирают случайное число и используют его в качестве индекса к эти $characters строка, чтобы получить случайный символ и добавить его к Вашей строке:

 $string = '';
 $max = strlen($characters) - 1;
 for ($i = 0; $i < $random_string_length; $i++) {
      $string .= $characters[mt_rand(0, $max)];
 }

$random_string_length длина случайной строки.

15
задан Eric Leschinski 28 July 2014 в 15:21
поделиться

3 ответа

If I understand your question correctly:

SELECT * FROM tbl WHERE id = 123 OR colname4 = 'x' OR colname8 = 'y' LIMIT 1

The 'LIMIT' keyword makes sure there is only one row returned.

32
ответ дан 1 December 2019 в 01:23
поделиться
select *
from MyTable
where MyPrimaryKey = 123
3
ответ дан 1 December 2019 в 01:23
поделиться

Columns in SQL don't have a defined 'order'. Database systems generally keep track of an order for display purposes, but it doesn't make sense to ask a database to select a column by number. You need to know the column's name in order to query its contents.

The same thing goes for the primary key (which, incidentally, may not be just a single column). You have to know which column it is, and what that column is named, in order to execute a query.

If you don't know these things, or need to figure them out dynamically, then

DESCRIBE tablename;

will tell you the names of each column, and whether it is part of the primary key or not. It will return a table that you can read, like any other result.

1
ответ дан 1 December 2019 в 01:23
поделиться
Другие вопросы по тегам:

Похожие вопросы: