MySQL
 Computer >> コンピューター >  >> プログラミング >> MySQL

範囲内のMySQL制限は、最初の3行を表示できませんか?


以下は、LIMITが範囲に設定された最初の3行のみを表示する構文です-

select *from yourTableName limit yourStartIndex,yourEndIndex;

まずテーブルを作成しましょう-

mysql> create table demo67
−> (
−> id int,
−> user_name varchar(40),
−> user_country_name varchar(20)
−> );
Query OK, 0 rows affected (0.72 sec)

挿入コマンド-

を使用して、いくつかのレコードをテーブルに挿入します。
mysql> insert into demo67 values(10,'John','US');
Query OK, 1 row affected (0.19 sec)

mysql> insert into demo67 values(1001,'David','AUS');
Query OK, 1 row affected (0.14 sec)

mysql> insert into demo67 values(101,'Mike','UK');
Query OK, 1 row affected (0.09 sec)

mysql> insert into demo67 values(102,'Carol','AUS');
Query OK, 1 row affected (0.11 sec)

mysql> insert into demo67 values(110,'Chris','US');
Query OK, 1 row affected (0.36 sec)

mysql> insert into demo67 values(105,'David','AUS');
Query OK, 1 row affected (0.08 sec)

selectステートメントを使用してテーブルのレコードを表示する-

mysql> select *from demo67;

これにより、次の出力が生成されます-

+------+-----------+-------------------+
| id   | user_name | user_country_name |
+------+-----------+-------------------+
| 10   | John      | US                |
| 1001 | David     | AUS               |
| 101  | Mike      | UK                |
| 102  | Carol     | AUS               |
| 110  | Chris     | US                |
| 105  | David     | AUS               |
+------+-----------+-------------------+
6 rows in set (0.00 sec)

これは、最初の3行を表示するためのMySQL制限のクエリです-

mysql> select *from demo67 limit 0,3;

これにより、次の出力が生成されます-

+------+-----------+-------------------+
| id   | user_name | user_country_name |
+------+-----------+-------------------+
| 10   | John      | US                |
| 1001 | David     | AUS               |
| 101  | Mike      | UK                |
+------+-----------+-------------------+
3 rows in set (0.00 sec)

  1. MySQLのcoalesce()で最初のnull以外の値を表示しますか?

    Coalesce()を使用して、最初のNOTNULL列値を出力できます。まずテーブルを作成しましょう- mysql> create table DemoTable1927    (    StudentName varchar(20),    StudentSubject varchar(20)    ); Query OK, 0 rows affected (0.00 sec) 挿入コマンド-を使用して、テーブルにいくつかのレコードを挿入します mysql> insert into DemoTabl

  2. 範囲内のMySQL制限は、最初の3行を表示できませんか?

    以下は、LIMITが範囲に設定された最初の3行のみを表示する構文です- select *from yourTableName limit yourStartIndex,yourEndIndex; まずテーブルを作成しましょう- mysql> create table demo67 −> ( −> id int, −> user_name varchar(40), −> user_country_name varchar(20) −> ); Query OK, 0 rows affected (0.