Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个 SQL 表:
员工(ID、姓名、地址、电话)
我想在不遵守指示顺序的情况下执行 SQL 查询,如下所示:
Insert Into Employee (Tel, name, Id, Address) Values (555621, "Jihen", 10236, "21 Cranberry street")
我可以这样做吗?
是的,这是允许的。INSERT与表中的列顺序相比,查询中的顺序并不重要。
INSERT
但是,您必须确保查询中列名的顺序与查询中提供的值的顺序相匹配。
是的-只要您在语句的两个部分中明确指定顺序(如您所示)
是的,你可以......你试过了吗?