如何为此场景编写SQL查询?
在上表中,我需要在现有记录中插入一个新的金额,作为100美元。
例:
A007 | Ramasundar | Bangalore | 100 |
....
003 | Alex | London | 100 |
发布于 2022-01-28 23:13:32
你要把它插入委员会的专栏吗?
INSERT INTO table_name (COMMISSION) VALUES (100);
https://stackoverflow.com/questions/70901242
复制相似问题