458 次浏览
让我们首先获取当前日期 −mysql> select curdate();这将产生以下输出 −+------------+ | curdate() | +------------+ | 2019-12-15 | +------------+ 1 row in set (0.00 sec)让我们首先创建一个表 −mysql> create table DemoTable1956 ( ProductId int, ProductName varchar(20), CustomerName varchar(20), ShippingDate date ); 使用 insert 命令插入一些记录到表中 −mysql> insert into DemoTable1956 values(101, 'Product-1', 'Sam', '2019-10-11'); ... 阅读更多
526 次浏览
让我们首先创建一个表 −mysql> create table DemoTable1955 ( UserId int NOT NULL AUTO_INCREMENT , PRIMARY KEY(UserId) ); 使用 insert 命令插入一些记录到表中 −mysql> insert into DemoTable1955 values(); ... 阅读更多
93 次浏览
要获取星期几,请在 MySQL 中使用 DAYNAME() 函数。让我们首先创建一个表 −mysql> create table DemoTable1954 ( ShippingDate date ); 使用 insert 命令插入一些记录到表中 −mysql> insert into DemoTable1954 values('2019-12-15'); ... 阅读更多
498 次浏览
让我们首先创建一个表 −mysql> create table DemoTable1953 ( StudentName varchar(20) ); 使用 insert 命令插入一些记录到表中 −mysql> insert into DemoTable1953 values('Chris'); ... 阅读更多
101 次浏览
为此,请使用 CASE 语句。让我们首先创建一个表 −mysql> create table DemoTable1952 ( Marks int ); 使用 insert 命令插入一些记录到表中 −mysql> insert into DemoTable1952 values(35); ... 阅读更多
676 次浏览
要将浮点值拆分为两列,第一列将包含小数点前的值。第二列将包含小数点后的值。为此,您可以使用 SUBSTRING_INDEX() 和 CAST()。让我们首先创建一个表 −mysql> create table DemoTable1951 ( Value1 varchar(20) ); 使用 insert 命令插入一些记录到表中 −mysql> insert into DemoTable1951 values('100.50'); ... 阅读更多
2K+ 次浏览
让我们创建一个表 −mysql> create table DemoTable1950 ( Amount float ); 使用 insert 命令插入一些记录到表中 −mysql> insert into DemoTable1950 values(45.60); ... 阅读更多
230 次浏览
要为现有列设置 NOT NULL 属性,请使用 ALTER TABLE 命令。让我们首先创建一个表 −mysql> create table DemoTable1949 ( UserId int, UserName varchar(20) ); 这是为现有列设置 NOT NULL 属性的查询 −mysql> alter table DemoTable1949 modify UserName varchar(20) not null; ... 阅读更多
261 次浏览
要仅对字母数字字符串中的数字进行排序,请使用 ORDER BY RIGHT()。让我们首先创建一个表 −mysql> create table DemoTable1948 ( StudentCode varchar(20) ); 使用 insert 命令插入一些记录到表中 −mysql> insert into DemoTable1948 values('121John_567'); ... 阅读更多
1K+ 次浏览
首先,我们创建一个表:mysql> create table DemoTable1947 ( Id int, Name varchar(20) );Query OK, 0 rows affected (0.00 sec)使用insert命令在表中插入一些记录:mysql> insert into DemoTable1947 values(101, 'Chris');Query OK, 1 row affected (0.00 sec)mysql> insert into DemoTable1947 values(102, 'David');Query OK, 1 row affected (0.00 sec)mysql> insert into DemoTable1947 values(103, 'Mike');Query OK, 1 row affected (0.00 sec)mysql> insert into DemoTable1947 values(104, 'Bob');Query OK, 1 row affected (0.00 sec)mysql> insert into DemoTable1947 values(105, 'Sam');Query OK, 1 row affected (0.00 sec)显示……阅读更多