我尝试使用 postgresql 查询创建一个表:
CREATE TABLE customer_account(ID_account integer primary key, customer_name (lastname) text);
但它给出了一条错误消息:
ERROR: syntax error at or near "("
LINE 5: customer_name (lastname) text,
可能问题来自括号,我已经尝试过
CREATE TABLE customer_account("ID_account" primary key, "customer_name (lastname)" text);
但它也给了我类似的错误信息。
如何更正查询?我真的需要使用括号。