I want set some constraint to the serial type,it only produce even or odd numbers.
serial type produce only even or odd numbers in postgresql
2.3k Views Asked by yjfuk At
2
There are 2 best solutions below
Related Questions in POSTGRESQL
- Only the first SQL script gets executed inside Docker Postgres container
- Compare fields in two tables
- Hibernate ClobJdbcType bindings: what are the diferences?
- Postgres && statement Error in Mybatis Mapper?
- Can this query be optimized? (Choosing a random row to insert, that excludes previously inserted Rows)
- Connection terminated unexpectedly while performing multi row insert using pg-promise
- Processing multiple forms in nodejs and postgresql
- How to copy data from SQLite to postgreSQL?
- PGAdmin4 configured behind a reverse proxy but unable to connect to Postgresql server
- Updates to pgsodium encrypted values don't use specified key_id
- Connecting to Postgres running in a Docker container using psql
- Can't connect to local postgresql server from my docker container
- Django Arrayfield migration to cloud sql (Postgresql) not creating the column
- Get list of matching keywords for each post
- docker-compose can't reset postgresql database
Related Questions in AUTO-INCREMENT
- dbt Incremental Model Issue with Snowflake Autoincrement Column
- How to definitelly fix Potgresql autoincrement problem with unique constraint violation
- Auto increment ID in kotlin xml
- Laravel Pest test ignore not resetting mariadb autoincrement ids
- Generate Automatic increment for "alt" html field on images
- Setting auto-increment after filling table (Firebird) with existing data (from SQL Server)
- How to create incremental counter in mulesoft dataweave
- How to increment ++ from an existing value
- Is it possible to read separately an autoincremental key relative to another id
- Auto assignment of the C# application version in Visual Studio
- Rename Images and save them with the new name and incrementing each 20
- Is an autoincrement key always guaranteed to increase in T-SQL?
- Creating an autoincrement column via sqlalchemy
- SQL not accepting AUTO_INCREMENT
- AUTOINCREMENT vs No AUTOINCREMENT in SQLite
Related Questions in NEXTVAL
- How do I use DISTINCT whilst using Next Value For Expression in SQL
- Dynamic table_name and nextval_sequence_name in PostgreSQL?
- Using a primary key with a sequence that cycles results in "duplicate key violates unique constraint" errors after wrap around in Postgresql
- Postgres nextval thread safety
- nextval on sequence returns all nextval values for all table rows in typeORM on postgresql table
- Oracle DB Sequence Parallel processing - Multi threading
- Oracle inserting with different position of attributes
- Why do some users and not others get ORA-01400: cannot insert NULL into primary key
- Adding a new column with nextval to an existing SNOWFLAKE database table
- Getting Invalid Identifier for Snowflake Sequence Nextval
- How to declare "nextval('testing_thing_thing_id_seq'::regclass)" as default value for column "thing_id" in postgres table "testing_thing"?
- java.sql.SQLIntegrityConstraintViolationException: ORA-00001
- Is there way to add a field in a parent query that will increment as the query goes through all values generated in a subquery?
- How to insert rows with the serial column catching up from the largest value in the table in Postgres
- How to copy, change, and insert records in Postgres
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
SERIALis a syntax sugar around creating and using sequences.So you could do it all manually and create a special type of sequence that suits your needs:
Or if you already have a table and a
SERIALcolumn you could change the underlying sequence:The name of the underlying sequence could be retrieved by "describing" the table using psql: