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.
次のコマンドを使用してmdbデータベースにテーブルを作成していますが、自動番号タイプを削除すると正常に機能します
"CREATE TABLE pxs(sid Autonumber , Adress Text , Port Text, user Text, pass Text, sreq Integer, freq Integer)"
では、id列を自動番号としてどのように定義する必要がありますか?
You can use:
CREATE TABLE pxs(sid counter primary key, ...
Note that user is a reserved word, so you might like to use some other name.
user