Home > Database > Mysql Tutorial > body text

Show date as default value in table

WBOY
Release: 2023-08-24 09:53:03
forward
722 people have browsed it

Show date as default value in table

Please try the following code. Note that you need to set the value

select-OPTIONS: so_date FOR sy-datlo.
INITIALIZATION.
so_date-sign = 'I'.
so_date-option = 'EQ'.
so_date-low = sy-datum.
CLEAR so_date-high.
APPEND so_date.
Copy after login
before START-OF_SELECTION

You can also try this simple option -

select-OPTIONS: so_date FOR sy-datlo default SY-DATUM.
Copy after login

The above is the detailed content of Show date as default value in table. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!