File: sql

package info (click to toggle)
note 1.3.26-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 456 kB
  • sloc: perl: 3,497; sh: 102; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
CREATE TABLE note (
  number int(10) DEFAULT '0' NOT NULL auto_increment,
  topic text,
  note text,
  date text,
  PRIMARY KEY (number)
);
# sample grant statement:
#GRANT ALL PRIVILEGES ON tom_note TO tom@localhost IDENTIFIED BY 'password';